Skip to content

Commit

Permalink
Update TestGameController.java
Browse files Browse the repository at this point in the history
  • Loading branch information
changlmasaki committed Mar 12, 2020
1 parent 1c5ed1f commit 623d2e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/kakuro/TestGameController.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void testDisconnectDatabase() {

@Test
// @brief Test Valid Board
public void testSolveBoard1() {
public void testBoardSolveValidBoard() {
// Arrange
int columns = 10;
int rows = 10;
Expand All @@ -100,7 +100,7 @@ public void testSolveBoard1() {

@Test
// @brief Test Invalid Board with one wrong vertical sum
public void testSolveBoard2() {
public void testBoardSolveInvalidBoardWithOneWrongVerticalSum() {
// Arrange
int columns = 10;
int rows = 10;
Expand All @@ -126,7 +126,7 @@ public void testSolveBoard2() {

@Test
// @brief Test Invalid Board with one wrong horizontal sum
public void testSolveBoard3() {
public void testBoardSolveInvalidBoardWithOneWrongHorizontalSum() {
// Arrange
int columns = 10;
int rows = 10;
Expand All @@ -152,7 +152,7 @@ public void testSolveBoard3() {

@Test
// @brief Test Invalid Board with correct sum but duplicate entries
public void testSolveBoard4() {
public void testBoardSolveInvalidBoardWithDuplicateEntries() {
// Arrange
int columns = 10;
int rows = 10;
Expand Down

0 comments on commit 623d2e6

Please sign in to comment.