Searched refs:CommandLineSupport (Results 1 - 3 of 3) sorted by relevance

/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
H A DCommandLineSupportTest.java21 * Unit tests for {@link CommandLineSupport}.
27 assertEquals("aBc", CommandLineSupport.quote("aBc"));
32 assertEquals("\"a c\"", CommandLineSupport.quote("a c"));
37 assertEquals("\"a\\\"c\"", CommandLineSupport.quote("a\"c"));
42 assertEquals("\" xy \"", CommandLineSupport.quote(" xy "));
47 assertEquals("a\\\\b", CommandLineSupport.quote("a\\b"));
52 assertEquals("", CommandLineSupport.quote(Arrays.<String> asList()));
57 assertEquals("a", CommandLineSupport.quote(Arrays.asList("a")));
63 CommandLineSupport.quote(Arrays.asList("a", "b", "c")));
69 CommandLineSupport
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
H A DCommandLineSupport.java20 final class CommandLineSupport { class
137 private CommandLineSupport() { method in class:CommandLineSupport
H A DAgentOptions.java610 return CommandLineSupport.quote(getVMArgument(agentJarFile));
627 final List<String> args = CommandLineSupport.split(arguments);
635 return CommandLineSupport.quote(args);

Completed in 124 milliseconds