nmaguirre / minesweeper

A Simple MineSweeper Project
6 stars 4 forks source link

MinesweeperGameState.numberOfRows() missing test #109

Closed dmatiasr closed 8 years ago

dmatiasr commented 8 years ago

This test should ensure that the size of the rows is ten.

dmatiasr commented 8 years ago

Implementation solved 8ff8d15

nricci commented 8 years ago

A few things that are wrong. First, a test should end in an assertion, there is no point in testing things more things after that. If you need to test another thing, make two tests. Second, if you assert equality to 10 then asserting non equality to 11 is redundant.

dmatiasr commented 8 years ago

Ok, check this please : I removed test when not equals f025517