Hello:
I'd like to avoid the findAll method in the Entities, not just in the Integration test (in the meantime I'm using @RooIntegrationTest(..., findAll=false))
Some context here:
I have an Entity whose findAllTest fails:
260218 entries are a lot of entities in development, and I presume that will be much more in production. So I prefer not to include the findAll method. I've tried to delete a findAllMethod using @RooEntity(..., findAllMethod="") but it doesn't work.Code:java.lang.AssertionError: Too expensive to perform a find all test for 'Commerce', as there are 260218 entries; set the findAllMaximum to exceed this value or set findAll=false on the integration test annotation to disable the test
However, I have done this a lot with previous versions. For instance, it works in 1.1.4.RELEASE [rev f787ce7].
In fact, the current version (1.1.5.RELEASE [rev d3a68c3]) undo the changes that 1.1.4 made and I have again a findAll method.
According https://jira.springsource.org/browse/ROO-589, it's a problem already solved.
Can you take a look to that? Thank you very much.


Reply With Quote
