Changeset 5215 for openmrs/branches/data_synchronization_bidirectional/test/api/org/openmrs/test/synchronization/engine/SyncAdminTest.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/SyncAdminTest.java
r5138 r5215 13 13 */ 14 14 package org.openmrs.test.synchronization.engine; 15 16 import static org.junit.Assert.assertEquals; 17 import static org.junit.Assert.assertNotSame; 18 import static org.junit.Assert.assertTrue; 19 import static org.junit.Assert.assertFalse; 20 import static org.junit.Assert.assertNull; 21 import static org.junit.Assert.assertNotNull; 22 import org.junit.Test; 15 23 16 24 import java.util.ArrayList; … … 29 37 import org.openmrs.api.ProgramWorkflowService; 30 38 import org.openmrs.api.context.Context; 39 import org.springframework.test.annotation.NotTransactional; 31 40 32 41 /** … … 40 49 } 41 50 51 @Test 52 @NotTransactional 42 53 public void testCreateProgram() throws Exception { 43 54 runSyncTest(new SyncTestHelper() { … … 94 105 }); 95 106 } 96 107 108 @Test 109 @NotTransactional 97 110 public void testEditProgram() throws Exception { 98 111 runSyncTest(new SyncTestHelper() { … … 121 134 } 122 135 123 136 @Test 137 @NotTransactional 124 138 public void testCreateLocation() throws Exception { 125 139 runSyncTest(new SyncTestHelper() { … … 135 149 }); 136 150 } 137 151 152 @Test 153 @NotTransactional 138 154 public void testEditLocation() throws Exception { 139 155 runSyncTest(new SyncTestHelper() {