JAL-1805 test envirionment separation
[jalview.git] / test / jalview / util / ComparisonTest.java
index 837cbe6..d8efa69 100644 (file)
@@ -12,7 +12,7 @@ import org.testng.annotations.Test;
 public class ComparisonTest
 {
 
-  @Test
+  @Test(groups ={ "Functional" })
   public void testIsGap()
   {
     assertTrue(Comparison.isGap('-'));
@@ -28,7 +28,7 @@ public class ComparisonTest
    * Test for isNucleotide is that sequences in a dataset are more than 85%
    * AGCTU. Test is not case-sensitive and ignores gaps.
    */
-  @Test
+  @Test(groups ={ "Functional" })
   public void testIsNucleotide() {
     SequenceI seq = new Sequence("eightypercent", "agctuAGCPV");
     assertFalse(Comparison.isNucleotide(new SequenceI[]
@@ -94,7 +94,7 @@ public class ComparisonTest
   /**
    * Test percentage identity calculation for two sequences.
    */
-  @Test
+  @Test(groups ={ "Functional" })
   public void testPID_matchGaps()
   {
     String seq1 = "ABCDEF";