assertSystemOutDoesntContain("Line 11");
}
@Test
public void testLineExceptionIsThrownAtIsHintedAtEvenIfThrownFromSuperClass() throws Exception {
stubAllKoans(Arrays.asList(new BlowUpOnLineEleven()));
new CommandLineArgumentRunner().run();
assertSystemOutContains("Line 11");
assertSystemOutDoesntContain("Line 10");
}