super(s);
p4change = new P4Change();
String input = "comment with a / inside"; String output = P4Change.backslash(input); assertEquals("comment with a \\/ inside", output);
Perl5Util util = new Perl5Util(); String tosubstitute = "xx<here>xx"; String input = P4Change.backslash("/a/b/c/"); String output = util.substitute("s/<here>/" + input + "/", tosubstitute); assertEquals("xx/a/b/c/xx", output);