Changeset 5215 for openmrs/branches/data_synchronization_bidirectional/test/api/org/openmrs/test/synchronization/engine/SyncRecordTest.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/SyncRecordTest.java
r4143 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.synchronization.engine.*; 30 38 import org.openmrs.synchronization.SyncItemState; 39 import org.springframework.test.annotation.NotTransactional; 31 40 32 41 /** … … 40 49 * @throws Exception 41 50 */ 51 @Test 52 @NotTransactional 42 53 public void testSerialization() throws Exception { 43 54 … … 109 120 * @throws Exception 110 121 */ 122 @Test 123 @NotTransactional 111 124 public void testEquality() throws Exception { 112 125