Changeset 5215 for openmrs/branches/data_synchronization_bidirectional/test/api/org/openmrs/test/synchronization/engine/SyncFormTest.java
- Timestamp:
- 08/09/08 16:18:42 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/branches/data_synchronization_bidirectional/test/api/org/openmrs/test/synchronization/engine/SyncFormTest.java
r4096 r5215 14 14 package org.openmrs.test.synchronization.engine; 15 15 16 import static org.junit.Assert.assertEquals; 17 import static org.junit.Assert.assertNotSame; 18 import static org.junit.Assert.assertFalse; 19 import static org.junit.Assert.assertNull; 20 import static org.junit.Assert.assertNotNull; 21 import org.junit.Test; 22 16 23 import org.openmrs.Concept; 17 24 import org.openmrs.Field; … … 20 27 import org.openmrs.api.FormService; 21 28 import org.openmrs.api.context.Context; 29 import org.springframework.test.annotation.NotTransactional; 22 30 23 31 /** … … 34 42 } 35 43 44 @Test 45 @NotTransactional 36 46 public void testEditFormMetadata() throws Exception { 37 47 runSyncTest(new SyncTestHelper() { … … 49 59 } 50 60 61 @Test 62 @NotTransactional 51 63 public void testDuplicateForm() throws Exception { 52 64 runSyncTest(new SyncTestHelper() { … … 79 91 } 80 92 93 @Test 94 @NotTransactional 81 95 public void testAddFieldToForm() throws Exception { 82 96 runSyncTest(new SyncTestHelper() {