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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tgraw
Cosc220 Assessment2
Commits
b8662284
Commit
b8662284
authored
3 years ago
by
tgraw
Browse files
Options
Downloads
Patches
Plain Diff
Added two new tests for checking if a box is complete or not. Issue 1 on gitlab
parent
4700a836
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
+31
-0
31 additions, 0 deletions
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
with
31 additions
and
0 deletions
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
+
31
−
0
View file @
b8662284
...
...
@@ -28,4 +28,35 @@ public class DotsAndBoxesGridTest {
}
// FIXME: You need to write tests for the two known bugs in the code.
@Test
public
void
CallingboxCompleteOnACompleteBoxShouldReturnTrue
()
{
logger
.
info
(
"Testing boxComplete() on a complete box"
);
var
grid
=
new
DotsAndBoxesGrid
(
2
,
2
,
1
);
// Minimum sized grid to test (1 box)
grid
.
drawHorizontal
(
0
,
0
,
1
);
grid
.
drawHorizontal
(
0
,
1
,
1
);
grid
.
drawVertical
(
0
,
0
,
1
);
grid
.
drawVertical
(
1
,
0
,
1
);
assertTrue
(
grid
.
boxComplete
(
0
,
0
));
}
@Test
public
void
CallingboxCompleteOnAnIncompleteBoxShouldReturnFalse
()
{
logger
.
info
(
"Testing boxCopmlete() on an incomplete box"
);
var
grid
=
new
DotsAndBoxesGrid
(
2
,
2
,
1
);
// Build a box testing after each line
// All checks should return false except the last which should be a complete box
assertFalse
(
grid
.
boxComplete
(
0
,
0
));
grid
.
drawHorizontal
(
0
,
0
,
0
);
assertFalse
(
grid
.
boxComplete
(
0
,
0
));
grid
.
drawHorizontal
(
0
,
1
,
0
);
assertFalse
(
grid
.
boxComplete
(
0
,
0
));
grid
.
drawVertical
(
0
,
0
,
0
);
assertFalse
(
grid
.
boxComplete
(
0
,
0
));
grid
.
drawVertical
(
1
,
0
,
0
);
assertTrue
(
grid
.
boxComplete
(
0
,
0
));
}
}
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