Package pbt.humbug.model
Class BoardTest
- java.lang.Object
-
- pbt.humbug.model.BoardTest
-
public class BoardTest extends Object
- Author:
- Pierre Bettens (pbt)
-
-
Constructor Summary
Constructors Constructor Description BoardTest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setUp()
void
testGetSquareType_exist()
void
testGetSquareType_exist_star()
void
testGetSquareType_null()
void
testIsInside_false_null()
Test of isInside method, of class Board.void
testIsInside_false_outbound_negative()
Test of isInside method, of class Board.void
testIsInside_false_outbound_positive_column()
Test of isInside method, of class Board.void
testIsInside_false_outbound_positive_row()
Test of isInside method, of class Board.void
testIsInside_general_true()
Test of isInside method, of class Board.
-
-
-
Method Detail
-
setUp
@BeforeEach public void setUp()
-
testIsInside_general_true
@Test public void testIsInside_general_true()
Test of isInside method, of class Board.
-
testIsInside_false_null
@Test public void testIsInside_false_null()
Test of isInside method, of class Board.
-
testIsInside_false_outbound_negative
@Test public void testIsInside_false_outbound_negative()
Test of isInside method, of class Board.
-
testIsInside_false_outbound_positive_row
@Test public void testIsInside_false_outbound_positive_row()
Test of isInside method, of class Board.
-
testIsInside_false_outbound_positive_column
@Test public void testIsInside_false_outbound_positive_column()
Test of isInside method, of class Board.
-
testGetSquareType_exist
@Test public void testGetSquareType_exist()
-
testGetSquareType_exist_star
@Test public void testGetSquareType_exist_star()
-
testGetSquareType_null
@Test public void testGetSquareType_null()
-
-