X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=test%2Fjalview%2Futil%2FPlatformTest.java;h=2f583a54e5e8ba7b76e5a7b70521ec9471495b97;hb=3684934fd25c4941bd2d6ec8bc9dc7d760979f4e;hp=617bf42bd08995a027d167424290da2b5bfc79de;hpb=b74e75812b411ed8838f2c57d84fa1b328bbefe5;p=jalview.git diff --git a/test/jalview/util/PlatformTest.java b/test/jalview/util/PlatformTest.java index 617bf42..2f583a5 100644 --- a/test/jalview/util/PlatformTest.java +++ b/test/jalview/util/PlatformTest.java @@ -20,7 +20,9 @@ */ package jalview.util; +import static org.testng.Assert.assertEquals; import static org.testng.Assert.assertFalse; +import static org.testng.Assert.assertNull; import static org.testng.Assert.assertTrue; import jalview.gui.JvOptionPane; @@ -120,4 +122,24 @@ public class PlatformTest assertTrue(Platform.isControlDown(new MouseEvent(b, 0, 0L, mods, 0, 0, 0, 0, clickCount, isPopupTrigger, buttonNo), mac)); } + + @Test(groups = "Functional") + public void testPathEquals() + { + assertTrue(Platform.pathEquals(null, null)); + assertFalse(Platform.pathEquals(null, "apath")); + assertFalse(Platform.pathEquals("apath", null)); + assertFalse(Platform.pathEquals("apath", "APATH")); + assertTrue(Platform.pathEquals("apath", "apath")); + assertTrue(Platform.pathEquals("apath/a/b", "apath\\a\\b")); + } + + @Test(groups = "Functional") + public void testEscapeBackslashes() + { + assertNull(Platform.escapeBackslashes(null)); + assertEquals(Platform.escapeBackslashes("hello world"), "hello world"); + assertEquals(Platform.escapeBackslashes("hello\\world"), + "hello\\\\world"); + } }