Changeset 5137
- Timestamp:
- 08/02/08 10:22:00 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs-modules/groovyforms/test/org/openmrs/module/groovyforms/util/GroovyFormsGenerationUtilTest.groovy
r5053 r5137 25 25 assertTrue "Should have the onSubmit() method", controller.indexOf("onSubmit(Foo form) {") > 0 26 26 assertTrue "Should have the validate() method", controller.indexOf("validate(Foo form) {") > 0 27 assertTrue "Should have the class name FooControl er",controller.startsWith("class FooController extends AbstractGroovyFormController {")27 assertTrue "Should have the class name FooController",controller.startsWith("class FooController extends AbstractGroovyFormController {") 28 28 } 29 29 }