You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
313 B

  1. package de.edu.hsfulda.ciip.tdd;
  2. import static org.junit.Assert.*;
  3. import org.junit.Test;
  4. public class BowlingCalculatorTest {
  5. @Test
  6. public void returnsZeroWhenNoPinIsHit() {
  7. // arrange
  8. String listOfThrows = "-- -- -- -- -- -- -- -- -- --";
  9. int expectedValue = 0;
  10. new BownlingCalculator();
  11. }
  12. }