X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fws%2Fjabaws%2FJalviewJabawsTestUtils.java;h=46feebcb0116a25a10a61e0448d3ad0abd626b0a;hb=99d5f1d805e530f23a53dad4484d44ecd0fbfdf3;hp=c2063233a173ca84307246a9188d0940d7535d92;hpb=9d139ca8d1af8f0f2d78193d418ae9e9168a3e8a;p=jalview.git diff --git a/test/jalview/ws/jabaws/JalviewJabawsTestUtils.java b/test/jalview/ws/jabaws/JalviewJabawsTestUtils.java index c206323..46feebc 100644 --- a/test/jalview/ws/jabaws/JalviewJabawsTestUtils.java +++ b/test/jalview/ws/jabaws/JalviewJabawsTestUtils.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -20,20 +20,19 @@ */ package jalview.ws.jabaws; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; import jalview.ws.jws2.Jws2Discoverer; import java.util.Vector; -import org.junit.AfterClass; -import org.junit.BeforeClass; -import org.junit.Test; +import org.testng.Assert; +import org.testng.annotations.AfterClass; +import org.testng.annotations.BeforeClass; +import org.testng.annotations.Test; public class JalviewJabawsTestUtils { - @BeforeClass + @BeforeClass(alwaysRun = true) public static void setUpBeforeClass() throws Exception { } @@ -46,19 +45,21 @@ public class JalviewJabawsTestUtils /** * test servers */ - public static String[] serviceUrls = new String[] - { "http://localhost:8080/jabaws" }; + private static String[] serviceUrls = new String[] { + "http://localhost:8080/jabaws", + "http://www.compbio.dundee.ac.uk/jabaws" }; - @Test + @Test(groups = { "Functional" }, enabled = false) public void testAnnotExport() { - fail("Not yet implemented"); + Assert.fail("Not yet implemented"); } public static jalview.ws.jws2.Jws2Discoverer getJabawsDiscoverer() { return getJabawsDiscoverer(true); } + public static Jws2Discoverer getJabawsDiscoverer(boolean localhost) { jalview.ws.jws2.Jws2Discoverer disc = jalview.ws.jws2.Jws2Discoverer @@ -82,12 +83,12 @@ public class JalviewJabawsTestUtils } catch (Exception e) { e.printStackTrace(); - fail("Aborting. Problem discovering services. Tried " + svcurls); + Assert.fail("Aborting. Problem discovering services. Tried " + + svcurls); } - assertTrue("Failed to discover any services at ", disc.getServices() - .size() > 0); + Assert.assertTrue(disc.getServices().size() > 0, + "Failed to discover any services at "); return disc; } - }