Changeset 81
- Timestamp:
- Jan 11, 2010, 10:33:01 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 9 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/Event.groovy
r80 r81 3 3 class Event { 4 4 5 String name 5 Subject subject 6 EventDescription eventDescription 6 7 Date startTime 7 8 Date endTime 8 Term classification9 ProtocolInstance protocol10 11 static hasMany = [subjects: Subject]12 9 13 10 static constraints = { -
trunk/grails-app/domain/dbnp/studycapturing/ProtocolInstance.groovy
r80 r81 5 5 Protocol protocol 6 6 7 static hasMany = [stringParameters : String, numberParameters : double, listParameters: long] 7 // TODO: check how the values can be indexed so that they can be mapped to their respective parameters (should we should use maps here?) 8 static hasMany = [stringParameterValues : String, numberParameterValues : double, listParameterValues: long] 8 9 9 10 static constraints = { -
trunk/tests/create_protocol_parameter
r80 r81 4 4 <head profile="http://selenium-ide.openqa.org/profiles/test-case"> 5 5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 6 <link rel="selenium.base" href=" " />7 <title> add protocol</title>6 <link rel="selenium.base" href="http://localhost:8080/" /> 7 <title>create_protocol_parameter</title> 8 8 </head> 9 9 <body> 10 10 <table cellpadding="1" cellspacing="1" border="1"> 11 11 <thead> 12 <tr><td rowspan="1" colspan="3"> add protocol</td></tr>12 <tr><td rowspan="1" colspan="3">create_protocol_parameter</td></tr> 13 13 </thead><tbody> 14 14 <tr> … … 68 68 </tr> 69 69 <tr> 70 <td>click </td>70 <td>clickAndWait</td> 71 71 <td>create</td> 72 72 <td></td> … … 138 138 </tr> 139 139 <tr> 140 <td>click </td>140 <td>clickAndWait</td> 141 141 <td>link=New ProtocolParameter</td> 142 142 <td></td> … … 155 155 <td>type</td> 156 156 <td>description</td> 157 <td> 157 <td>ebi.ac.uk:MAGETabulator:P-MTAB-3518.diet.Parameter</td> 158 158 </tr> 159 159 <tr>
Note: See TracChangeset
for help on using the changeset viewer.