History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: APF-768
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Matt Raible
Reporter: Travis D
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
AppFuse

Mixed Case Entity Names handled incorrectly in generated test

Created: 23/May/07 04:55 PM   Updated: 23/May/07 05:51 PM
Component/s: Tools - AMP
Affects Version/s: 2.0-M5
Fix Version/s: 2.0-M5

Environment: JSF basic archetype


 Description  « Hide
Only the first letter of the entity name should be made lower case.
For example entity "ModelObject"
In ModelObjectListTest:

GenericManager<ModelObject, Long> modelobjectManager =
                (GenericManager<ModelObject, Long>) applicationContext.getBean("modelobjectManager");

Should be:

GenericManager<ModelObject, Long> modelObjectManager =
                (GenericManager<ModelObject, Long>) applicationContext.getBean("modelObjectManager");


 All   Comments   Change History   FishEye      Sort Order:
Travis D - 23/May/07 05:06 PM
This is also in the manager definition in applicationContext.xml

Matt Raible - 23/May/07 05:51 PM
Fixed and redeployed. Please rm -r ~/.m2/repository/org/codehaus/mojo/appfuse-maven-plugin to test and verify.