import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
+@Test(groups = { "Network" })
public class DisorderAnnotExportImport
{
public static String testseqs = "examples/uniref50.fa";
public static jalview.gui.AlignFrame af = null;
- @BeforeClass(alwaysRun = true)
+ @BeforeClass(inheritGroups = true)
public static void setUpBeforeClass() throws Exception
{
assertNotNull("Couldn't load test data ('" + testseqs + "')", af);
}
- @AfterClass
+ @AfterClass(alwaysRun = true)
public static void tearDownAfterClass() throws Exception
{
if (af != null)
{
af.setVisible(false);
af.dispose();
+ af=null;
}
}
/**
* test for patches to JAL-1294
*/
- @Test(groups ={ "Functional" })
+ @Test
public void testDisorderAnnotExport()
{
disorderClient = new AADisorderClient(iupreds.get(0), af, null, null);