JAL-1270 comments added regarding required remote service
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Thu, 27 Aug 2015 15:50:06 +0000 (16:50 +0100)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Thu, 27 Aug 2015 15:50:06 +0000 (16:50 +0100)
test/jalview/ws/PDBSequenceFetcherTest.java

index 86439fc..adf53f5 100644 (file)
@@ -49,6 +49,14 @@ public class PDBSequenceFetcherTest
     sf = new SequenceFetcher(false);
   }
 
+  /**
+   * Test that RNA structure can be added by a call to the RNAML service.
+   * 
+   * Note this test depends on http://arn-ibmc.in2p3.fr/api/compute/2d which is
+   * not always reliable.
+   * 
+   * @throws Exception
+   */
   @Test(groups =
   { "Network" }, enabled = true)
   public void testRnaSeqRetrieve() throws Exception
@@ -62,7 +70,9 @@ public class PDBSequenceFetcherTest
       assertTrue("No annotation transfered to sequence.",
               sq.getAnnotation().length > 0);
       assertTrue("No PDBEntry on sequence.", sq.getAllPDBEntries().size() > 0);
-      assertTrue("No RNA annotation on sequence.", sq.getRNA() != null);
+      assertTrue(
+              "No RNA annotation on sequence, possibly http://arn-ibmc.in2p3.fr/api/compute/2d not available?",
+              sq.getRNA() != null);
     }
   }