* test for patch release versions
*/
assertFalse(Jalview2XML.isVersionStringLaterThan("2.11.3.0", "2.11.2"));
- assertTrue(Jalview2XML.isVersionStringLaterThan("2.11.3.0","2.11.4"));
- assertFalse(Jalview2XML.isVersionStringLaterThan("2.12.2.0b1","2.12.2.0"));
- assertFalse(Jalview2XML.isVersionStringLaterThan("2.12.2.3","2.12.2.2"));
+ assertTrue(Jalview2XML.isVersionStringLaterThan("2.11.3.0", "2.11.4"));
+ assertFalse(
+ Jalview2XML.isVersionStringLaterThan("2.12.2.0b1", "2.12.2.0"));
+ assertFalse(
+ Jalview2XML.isVersionStringLaterThan("2.12.2.3", "2.12.2.2"));
}
acg.setPredefinedColours(true);
af.changeColour(acg);
Color seqcol[] = new Color[3];
- for (int iStart=fsq.findIndex(fsq.getStart()),i=0;i<3;i++) {
- seqcol[i] = af.alignPanel.getSeqPanel().seqCanvas.getSequenceRenderer().getResidueColour(fsq, iStart+i, null);
+ for (int iStart = fsq.findIndex(fsq.getStart()), i = 0; i < 3; i++)
+ {
+ seqcol[i] = af.alignPanel.getSeqPanel().seqCanvas
+ .getSequenceRenderer()
+ .getResidueColour(fsq, iStart + i, null);
}
/*
* save project, close windows, reload project, verify
"testStoreAndRecoverAnnotRowElemColors", ".jvp");
tfile.deleteOnExit();
new Jalview2XML(false).saveState(tfile);
- //Desktop.instance.closeAll_actionPerformed(null);
+ // Desktop.instance.closeAll_actionPerformed(null);
af = new FileLoader().LoadFileWaitTillLoaded(tfile.getAbsolutePath(),
DataSourceType.FILE);
Assert.assertNotNull(af, "Failed to reload project");
* verify alignment annotation has colors
*/
av = af.getViewport();
-
+
ColourSchemeI loadedCscheme = av.getGlobalColourScheme();
- Assert.assertTrue(loadedCscheme instanceof AnnotationColourGradient,"Didn't apply Annotation colour gradient");
+ Assert.assertTrue(loadedCscheme instanceof AnnotationColourGradient,
+ "Didn't apply Annotation colour gradient");
acg = (AnnotationColourGradient) loadedCscheme;
assertTrue(acg.isSeqAssociated());
assertTrue(acg.isPredefinedColours());
for (int iStart = al.getSequenceAt(0)
.findIndex(al.getSequenceAt(0).getStart()), i = 0; i < 3; i++)
{
- Assert.assertTrue(ala.annotations[i].colour!=null);
+ Assert.assertTrue(ala.annotations[i].colour != null);
Assert.assertTrue(ala.annotations[i].colour.equals(annots[i].colour));
- Color newseqcol = af.alignPanel.getSeqPanel().seqCanvas.getSequenceRenderer().getResidueColour(fsq, iStart+i, null);
- Assert.assertTrue(seqcol[i].equals(newseqcol),"Sequence shading is different");
+ Color newseqcol = af.alignPanel.getSeqPanel().seqCanvas
+ .getSequenceRenderer()
+ .getResidueColour(fsq, iStart + i, null);
+ Assert.assertTrue(seqcol[i].equals(newseqcol),
+ "Sequence shading is different");
}
-
+
}
/**
}
/**
- * Test that a view from an older version of Jalview is restored with Overview automatically shown when the preference is set
+ * Test that a view from an older version of Jalview is restored with Overview
+ * automatically shown when the preference is set
*
* @throws Exception
*/
*
* @throws Exception
*/
- @Test(groups = {"Functional"}, enabled=false)
+ @Test(groups = { "Functional" }, enabled = false)
public void testReloadActuallyReloads() throws Exception
{
Desktop.instance.closeAll_actionPerformed(null);