X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FPhylipFileTests.java;h=e63bca79b7fb030c0cc116081bc77381f4cedc17;hb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;hp=d6f28fad7be39cac58ed430f8f01b9aa44310335;hpb=6dd554fdbf34db6b79595d5027159d20225f4894;p=jalview.git diff --git a/test/jalview/io/PhylipFileTests.java b/test/jalview/io/PhylipFileTests.java index d6f28fa..e63bca7 100644 --- a/test/jalview/io/PhylipFileTests.java +++ b/test/jalview/io/PhylipFileTests.java @@ -1,7 +1,28 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2) + * Copyright (C) 2015 The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.io; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; +import static org.testng.AssertJUnit.assertNotNull; +import static org.testng.AssertJUnit.assertTrue; + import jalview.datamodel.AlignmentI; import jalview.datamodel.SequenceI; @@ -9,7 +30,7 @@ import java.io.IOException; import java.util.HashMap; import java.util.Map; -import org.junit.Test; +import org.testng.annotations.Test; /** * Test file for {@link PhylipFile}. @@ -78,7 +99,7 @@ public class PhylipFileTests * * @throws Exception */ - @Test + @Test(groups = { "Functional" }) public void testSequentialDataExtraction() throws Exception { testDataExtraction(sequentialFile); @@ -90,7 +111,7 @@ public class PhylipFileTests * * @throws Exception */ - @Test + @Test(groups = { "Functional" }) public void testInterleavedDataExtraction() throws Exception { testDataExtraction(interleavedFile); @@ -123,7 +144,7 @@ public class PhylipFileTests * * @throws Exception */ - @Test + @Test(groups = { "Functional" }) public void testSequentialIO() throws Exception { testIO(sequentialFile); @@ -135,7 +156,7 @@ public class PhylipFileTests * * @throws Exception */ - @Test + @Test(groups = { "Functional" }) public void testInterleavedIO() throws Exception { testIO(interleavedFile); @@ -163,4 +184,4 @@ public class PhylipFileTests StockholmFileTest.testAlignmentEquivalence(al, al_input, false); } -} \ No newline at end of file +}