Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
COSC220 Assessment2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jennica Llamera
COSC220 Assessment2
Commits
ddfb287b
Commit
ddfb287b
authored
11 months ago
by
Jennica Llamera
Browse files
Options
Downloads
Patches
Plain Diff
Added unit tests
parent
d0e646ec
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
+50
-4
50 additions, 4 deletions
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
with
50 additions
and
4 deletions
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
+
50
−
4
View file @
ddfb287b
...
...
@@ -2,25 +2,33 @@ package dotsandboxes;
import
org.junit.jupiter.api.*
;
import
static
org
.
junit
.
jupiter
.
api
.
Assertions
.*;
import
static
org
.
junit
.
jupiter
.
api
.
Assumptions
.*;
import
org.apache.logging.log4j.LogManager
;
import
org.apache.logging.log4j.Logger
;
public
class
DotsAndBoxesGridTest
{
/*
* Because Test classes are classes, they can have fields, and can have static fields.
* This field is a logger. Loggers are like a more advanced println, for writing messages out to the console or a log file.
* Because Test classes are classes, they can have fields, and can have static
* fields.
* This field is a logger. Loggers are like a more advanced println, for writing
* messages out to the console or a log file.
*/
private
static
final
Logger
logger
=
LogManager
.
getLogger
(
DotsAndBoxesGridTest
.
class
);
private
DotsAndBoxesGrid
gridTest
;
/*
* Tests are functions that have an @Test annotation before them.
* The typical format of a test is that it contains some code that does something, and then one
* The typical format of a test is that it contains some code that does
* something, and then one
* or more assertions to check that a condition holds.
*
* This is a dummy test just to show that the test suite itself runs
*/
public
void
setUp
()
{
// Setting up a new DotsAndBoxesGrid for every test
gridTest
=
new
DotsAndBoxesGrid
(
4
,
4
,
2
);
}
@Test
public
void
testTestSuiteRuns
()
{
logger
.
info
(
"Dummy test to show the test suite runs"
);
...
...
@@ -28,4 +36,42 @@ public class DotsAndBoxesGridTest {
}
// FIXME: You need to write tests for the two known bugs in the code.
@Test
public
void
testScoreCalculation
()
{
logger
.
info
(
"Testing score calculation on box completion"
);
DotsAndBoxesGrid
grid
=
new
DotsAndBoxesGrid
(
4
,
3
,
2
);
grid
.
drawHorizontal
(
0
,
0
,
1
);
grid
.
drawVertical
(
0
,
0
,
1
);
grid
.
drawVertical
(
1
,
0
,
1
);
boolean
boxCompleted
=
grid
.
drawHorizontal
(
1
,
0
,
1
);
// This should complete the box
// Check if the box was completed and claimed by the correct player
assertTrue
(
boxCompleted
,
"Box should be completed and claimed"
);
assertEquals
(
1
,
grid
.
getBoxOwner
(
0
,
0
),
"The box owner should be player 1"
);
}
@Test
public
void
testInvalidMoveHandling
()
{
logger
.
info
(
"Testing invalid move handling"
);
DotsAndBoxesGrid
grid
=
new
DotsAndBoxesGrid
(
4
,
3
,
2
);
grid
.
drawHorizontal
(
0
,
0
,
1
);
// Attempt to draw the same horizontal line again
Exception
exception
=
assertThrows
(
IndexOutOfBoundsException
.
class
,
()
->
{
grid
.
drawHorizontal
(
0
,
0
,
1
);
// This should throw an exception
});
assertEquals
(
"Line has already been drawn"
,
exception
.
getMessage
());
}
@Test
public
void
testBoxCompletionLogic
()
{
logger
.
info
(
"Testing box completion logic"
);
DotsAndBoxesGrid
grid
=
new
DotsAndBoxesGrid
(
4
,
3
,
2
);
// Attempt to complete a box without drawing all lines
boolean
isComplete
=
grid
.
boxComplete
(
0
,
0
);
assertFalse
(
isComplete
,
"Box should not be complete without all lines drawn"
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment