X-Git-Url: http://source.jalview.org/gitweb/?p=jalview.git;a=blobdiff_plain;f=test%2Fjalview%2Fgui%2FFeatureSettingsTest.java;fp=test%2Fjalview%2Fgui%2FFeatureSettingsTest.java;h=12c4c6cc9fa287c7cf3f46ca754d366254d714b0;hp=7cc4cc1884e80230308e104c66aaa3b26d3905ee;hb=eb3e681d6e82ccdd5d312d1981dfb306e7f479f0;hpb=cb31e23d9138e481479623374aed7767bf8934d2 diff --git a/test/jalview/gui/FeatureSettingsTest.java b/test/jalview/gui/FeatureSettingsTest.java index 7cc4cc1..12c4c6c 100644 --- a/test/jalview/gui/FeatureSettingsTest.java +++ b/test/jalview/gui/FeatureSettingsTest.java @@ -281,13 +281,19 @@ public class FeatureSettingsTest "By Score (> 4.0)
" + simpleTooltip + "
"); } - String fsfile="",fsfile2="\n"; - @Test(groups="Functional") + + String fsfile = "", + fsfile2 = "\n"; + + @Test(groups = "Functional") public void testIdentifyFeatureSettingsFile() throws Exception { - FileFormatI type = new IdentifyFile().identify(fsfile, DataSourceType.PASTE); - assertTrue(FileFormat.FeatureSettings==type,"Feature settings file was identified as "+type); + FileFormatI type = new IdentifyFile().identify(fsfile, + DataSourceType.PASTE); + assertTrue(FileFormat.FeatureSettings == type, + "Feature settings file was identified as " + type); type = new IdentifyFile().identify(fsfile2, DataSourceType.PASTE); - assertTrue(FileFormat.FeatureSettings==type,"Feature settings file with newline was identified as "+type); + assertTrue(FileFormat.FeatureSettings == type, + "Feature settings file with newline was identified as " + type); } }