JAL-1772 non-functional test added. not doing any more work for 2.9 release
[jalview.git] / test / jalview / datamodel / SeqCigarTest.java
index fc0cb0e..3b50ce1 100644 (file)
@@ -1,9 +1,9 @@
 package jalview.datamodel;
 
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertFalse;
+import static org.testng.AssertJUnit.assertEquals;
+import static org.testng.AssertJUnit.assertFalse;
 
-import org.junit.Test;
+import org.testng.annotations.Test;
 
 /**
  * Unit tests for SeqCigar
@@ -15,7 +15,7 @@ public class SeqCigarTest
    * 
    * TODO: split into separate tests
    */
-  @Test
+  @Test(groups ={ "Functional" })
   public void testSomething() throws Exception
   {
     String o_seq = "asdfktryasdtqwrtsaslldddptyipqqwaslchvhttt";
@@ -125,6 +125,8 @@ public class SeqCigarTest
    *          String
    * @return String
    */
+
+
   protected void testCigar_string(Sequence seq, String ex_cs_gapped)
   {
     SeqCigar c_sgapped = new SeqCigar(seq);
@@ -133,6 +135,7 @@ public class SeqCigarTest
             cs_gapped);
   }
 
+
   protected void testSeqRecovery(SeqCigar gen_sgapped,
           SequenceI s_gapped)
   {