JAL-1805 test envirionment separation
[jalview.git] / test / jalview / datamodel / AlignedCodonTest.java
index 60368b1..a6802b1 100644 (file)
@@ -1,15 +1,15 @@
 package jalview.datamodel;
 
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertTrue;
+import static org.testng.AssertJUnit.assertEquals;
+import static org.testng.AssertJUnit.assertFalse;
+import static org.testng.AssertJUnit.assertTrue;
 
-import org.junit.Test;
+import org.testng.annotations.Test;
 
 public class AlignedCodonTest
 {
 
-  @Test
+  @Test(groups ={ "Functional" })
   public void testEquals()
   {
     AlignedCodon ac = new AlignedCodon(1, 3, 4);
@@ -20,7 +20,7 @@ public class AlignedCodonTest
     assertTrue(ac.equals(ac));
   }
 
-  @Test
+  @Test(groups ={ "Functional" })
   public void testToString() {
     AlignedCodon ac = new AlignedCodon(1, 3, 4);
     assertEquals("[1, 3, 4]", ac.toString());