JAL-1270 add missing "Functional" to tests
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Wed, 15 Nov 2017 10:32:41 +0000 (10:32 +0000)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Wed, 15 Nov 2017 10:32:41 +0000 (10:32 +0000)
test/jalview/schemes/Blosum62ColourSchemeTest.java
test/jalview/util/MapListTest.java
test/jalview/util/MathUtilsTest.java

index 0b5b6bd..030a90f 100644 (file)
@@ -20,7 +20,7 @@ public class Blosum62ColourSchemeTest
    * </ul>
    * <ul>
    */
-  @Test
+  @Test(groups = "Functional")
   public void testFindColour()
   {
     ColourSchemeI blosum = new Blosum62ColourScheme();
index d2db258..3fc6fe0 100644 (file)
@@ -818,7 +818,7 @@ public class MapListTest
   /**
    * Test the method that compounds ('traverses') two mappings
    */
-  @Test
+  @Test(groups = "Functional")
   public void testTraverse()
   {
     /*
index fc84741..dc23472 100644 (file)
@@ -6,7 +6,7 @@ import org.testng.annotations.Test;
 
 public class MathUtilsTest
 {
-  @Test
+  @Test(groups = "Functional")
   public void testGcd()
   {
     assertEquals(MathUtils.gcd(0, 0), 0);