.put("sonar.sources", "src")
.put("sonar.tests", "test")
.build())
.start();
assertThat(result.coveragePerTest(new DefaultInputFile("com.foo.project", "test/sampleTest.xoo"), "test1", new DefaultInputFile("com.foo.project", "src/sample.xoo")))
.containsExactly(1, 2, 3, 8, 9, 10);
assertThat(result.coveragePerTest(new DefaultInputFile("com.foo.project", "test/sampleTest.xoo"), "test2", new DefaultInputFile("com.foo.project", "src/sample.xoo")))
.containsExactly(3, 4);
}