コード例 #1
0
ファイル: StringHelperTest.java プロジェクト: JSantosP/camel
 public void testNotFileFriendlySimpleSanitized() {
   String out = StringHelper.sanitize("c:\\helloworld");
   assertTrue("Should not contain : ", out.indexOf(':') == -1);
   assertTrue("Should not contain . ", out.indexOf('.') == -1);
 }
コード例 #2
0
ファイル: StringHelperTest.java プロジェクト: JSantosP/camel
 public void testSimpleSanitized() {
   String out = StringHelper.sanitize("hello");
   assertTrue("Should not contain : ", out.indexOf(':') == -1);
   assertTrue("Should not contain . ", out.indexOf('.') == -1);
 }