package de.edu.hsfulda.ciip.tdd; import static org.junit.Assert.*; import org.junit.Test; public class BowlingCalculatorTest { @Test public void returnsZeroWhenNoPinIsHit() { // arrange String listOfThrows = "-- -- -- -- -- -- -- -- -- --"; int expectedValue = 0; new BownlingCalculator(); } }