assertThat(testCase.coverageBlocks()).hasSize(1);
CoverageBlock cover = Iterables.getFirst(testCase.coverageBlocks(), null);
assertThat(cover.testCase()).isEqualTo(testCase);
assertThat(cover.testable()).isSameAs(testable);
assertThat(cover.lines()).containsExactly(10, 11, 12);
}
@Test
public void should_cover_multiple_testables() {
ScanGraph graph = ScanGraph.create();