Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dots and boxes
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
vcheroor
dots and boxes
Commits
56571a7a
Commit
56571a7a
authored
Jul 31, 2024
by
Will Billingsley
Browse files
Options
Downloads
Patches
Plain Diff
Done unit test but failed
parent
f1e4bdb1
Branches
1-fix-assignment-errors
Tags
testsfail
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
+24
-12
24 additions, 12 deletions
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
with
24 additions
and
12 deletions
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
+
24
−
12
View file @
56571a7a
...
...
@@ -8,24 +8,36 @@ 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.
*/
private
static
final
Logger
logger
=
LogManager
.
getLogger
(
DotsAndBoxesGridTest
.
class
);
/*
* 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
* or more assertions to check that a condition holds.
*
* This is a dummy test just to show that the test suite itself runs
*/
@Test
public
void
testTestSuiteRuns
()
{
logger
.
info
(
"Dummy test to show the test suite runs"
);
assertTrue
(
true
);
}
// FIXME: You need to write tests for the two known bugs in the code.
@Test
public
void
testIsBoxComplete
()
{
DotsAndBoxesGrid
grid
=
new
DotsAndBoxesGrid
(
3
,
3
);
// Example grid size
grid
.
drawHorizontalLine
(
0
,
0
);
// Top line
grid
.
drawVerticalLine
(
0
,
0
);
// Left line
grid
.
drawHorizontalLine
(
0
,
1
);
// Bottom line
grid
.
drawVerticalLine
(
1
,
0
);
// Right line
assertTrue
(
grid
.
isBoxComplete
(
0
,
0
),
"The box should be complete"
);
}
@Test
public
void
testDrawLineAlreadyDrawn
()
{
DotsAndBoxesGrid
grid
=
new
DotsAndBoxesGrid
(
3
,
3
);
// Example grid size
grid
.
drawHorizontalLine
(
0
,
0
);
// Draw line once
IllegalStateException
thrown
=
assertThrows
(
IllegalStateException
.
class
,
()
->
grid
.
drawHorizontalLine
(
0
,
0
),
// Try to draw the same line again
"Expected drawHorizontalLine() to throw, but it didn't"
);
assertTrue
(
thrown
.
getMessage
().
contains
(
"Line already 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