Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
DotsAndBoxes
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
gsjollem
DotsAndBoxes
Commits
8ef58a6d
Commit
8ef58a6d
authored
3 years ago
by
HangmansMoose
Browse files
Options
Downloads
Patches
Plain Diff
Added unit tests for linedraw and boxcomplete
parent
e8b8f0aa
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/dotsandboxes/Main.java
+15
-15
15 additions, 15 deletions
src/main/java/dotsandboxes/Main.java
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
+31
-0
31 additions, 0 deletions
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
with
46 additions
and
15 deletions
src/main/java/dotsandboxes/Main.java
+
15
−
15
View file @
8ef58a6d
This diff is collapsed.
Click to expand it.
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
+
31
−
0
View file @
8ef58a6d
...
...
@@ -14,6 +14,8 @@ public class DotsAndBoxesGridTest {
*/
private
static
final
Logger
logger
=
LogManager
.
getLogger
(
DotsAndBoxesGridTest
.
class
);
DotsAndBoxesGrid
grid
=
new
DotsAndBoxesGrid
(
15
,
8
,
1
);
/*
* 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
...
...
@@ -28,4 +30,33 @@ public class DotsAndBoxesGridTest {
}
// FIXME: You need to write tests for the two known bugs in the code.
@Test
public
void
testLineDraw
(){
//This test will draw the lines that will also be used in the second test. It should draw the box
//then attempt to draw one of the lines again.
logger
.
info
(
"Testing duplicate line drawing"
);
grid
.
drawHorizontal
(
0
,
0
,
1
);
grid
.
drawHorizontal
(
0
,
1
,
1
);
grid
.
drawVertical
(
0
,
0
,
1
);
grid
.
drawVertical
(
1
,
0
,
1
);
assertFalse
(
grid
.
drawHorizontal
(
0
,
0
,
1
));
}
@Test
public
void
testBoxComplete
()
{
// will need to draw a box, then give it to box complete and assert that it should be true
logger
.
info
(
"Testing box completion"
);
assertTrue
(
grid
.
boxComplete
(
0
,
0
));
assertFalse
(
grid
.
boxComplete
(
2
,
2
));
}
}
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