JAL-1805 test envirionment separation
[jalview.git] / test / jalview / analysis / CodingUtilsTest.java
index e787ac3..429c9ed 100644 (file)
@@ -10,7 +10,7 @@ import org.testng.annotations.Test;
 public class CodingUtilsTest
 {
 
-  @Test
+  @Test(groups ={ "Functional" })
   public void testDecodeCodon()
   {
     assertTrue(Arrays.equals(new char[]
@@ -31,7 +31,7 @@ public class CodingUtilsTest
     { 'T', 'T', 'T' }, CodingUtils.decodeCodon(63)));
   }
 
-  @Test
+  @Test(groups ={ "Functional" })
   public void testDecodeNucleotide()
   {
     assertEquals('A', CodingUtils.decodeNucleotide(0));
@@ -41,7 +41,7 @@ public class CodingUtilsTest
     assertEquals('0', CodingUtils.decodeNucleotide(4));
   }
 
-  @Test
+  @Test(groups ={ "Functional" })
   public void testEncodeCodon()
   {
     assertTrue(CodingUtils.encodeCodon('Z') < 0);