similarityParams);
}
+ @Override
@BeforeClass(dependsOnMethods = { "setUpTree" })
public void createTreeView()
{
// TODO Auto-generated method stub
}
+
+
+ @Override
+ public void testInvalidBranchName()
+ {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void testExistingBranchName()
+ {
+ // TODO Auto-generated method stub
+
+ }
}
}
+ @Override
@BeforeClass(dependsOnMethods = { "setUpJalview", "setUpTree" })
public void createTreeView()
{
}
@Override
+ @Test(
+ groups = "Functional",
+ expectedExceptions = IllegalArgumentException.class)
+ public void testInvalidBranchName()
+ {
+ tree.getNode("I shouldn't exist");
+
+ }
+
+ @Override
+ @Test(groups = "Functional")
+ public void testExistingBranchName()
+ {
+ tree.getNode("leaf 2");
+
+ }
+
+ @Override
@Test(groups = "Functional")
public void testTreeLoaded()
{
+
}
Jalview.main(args);
}
+ @BeforeClass(dependsOnMethods = { "setUpJalview", "setUpTree" })
+ public abstract void createTreeView();
+
@Test(groups = "Functional")
public void testTreeViewExists()
{
assertTrue(treeView.isShowing());
}
+ @Test(
+ groups = "Functional",
+ expectedExceptions = IllegalArgumentException.class)
+ public abstract void testInvalidBranchName();
+
@Test(groups = "Functional")
public abstract void testTreeLoaded();
@Test(groups = "Functional")
+ public abstract void testExistingBranchName();
+
+ @Test(groups = "Functional")
public abstract void testChildNodesCount();
@Test(groups = "Functional")