Searched refs:containsLine (Results 1 – 4 of 4) sorted by relevance
14 import static org.jacoco.examples.ConsoleOutput.containsLine;31 console.expect(containsLine("0 of 3 methods missed")); in testRunExample()32 console.expect(containsLine("1 of 5 complexity missed")); in testRunExample()33 console.expect(containsLine("Line 46: ")); in testRunExample()34 console.expect(containsLine("Line 47: green")); in testRunExample()35 console.expect(containsLine("Line 48: yellow")); in testRunExample()36 console.expect(containsLine("Line 49: red")); in testRunExample()
14 import static org.jacoco.examples.ConsoleOutput.containsLine;38 console.expect(containsLine("class name: org/jacoco/examples/ClassInfoTest")); in testRunExample()39 console.expect(containsLine("methods: 3")); in testRunExample()40 console.expect(containsLine("branches: 2")); in testRunExample()41 console.expect(containsLine("complexity: 4")); in testRunExample()
14 import static org.jacoco.examples.ConsoleOutput.containsLine;42 console.expect(containsLine("exec file: " + file)); in testRunExample()43 console.expect(containsLine("CLASS ID HITS/PROBES CLASS NAME")); in testRunExample()45 console.expect(containsLine("0000000000001234 2 of 3 foo/MyClass")); in testRunExample()
49 public static Matcher<String> containsLine(String line) { in containsLine() method in ConsoleOutput