Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
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
Arabella Adelaide Wain
Assessment2
Commits
4809b511
Commit
4809b511
authored
11 months ago
by
Arabella Adelaide Wain
Browse files
Options
Downloads
Patches
Plain Diff
Tests written, bugs not fixed
parent
dd640054
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
+47
-0
47 additions, 0 deletions
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
with
47 additions
and
0 deletions
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
+
47
−
0
View file @
4809b511
...
@@ -14,6 +14,8 @@ public class DotsAndBoxesGridTest {
...
@@ -14,6 +14,8 @@ public class DotsAndBoxesGridTest {
*/
*/
private
static
final
Logger
logger
=
LogManager
.
getLogger
(
DotsAndBoxesGridTest
.
class
);
private
static
final
Logger
logger
=
LogManager
.
getLogger
(
DotsAndBoxesGridTest
.
class
);
private
DotsAndBoxesGrid
grid
;
/*
/*
* Tests are functions that have an @Test annotation before them.
* 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
...
@@ -21,6 +23,51 @@ public class DotsAndBoxesGridTest {
...
@@ -21,6 +23,51 @@ public class DotsAndBoxesGridTest {
*
*
* This is a dummy test just to show that the test suite itself runs
* This is a dummy test just to show that the test suite itself runs
*/
*/
@Test
public
void
setUp
()
{
grid
=
new
DotsAndBoxesGrid
(
4
,
3
,
2
);
}
@Test
public
void
boxCompleteDetectsCompletedBoxes
()
{
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
));
grid
.
drawHorizontal
(
1
,
1
,
1
);
grid
.
drawHorizontal
(
1
,
2
,
1
);
grid
.
drawVertical
(
1
,
1
,
1
);
grid
.
drawVertical
(
2
,
1
,
1
);
assertTrue
(
grid
.
boxComplete
(
1
,
1
));
}
@Test
public
void
boxCompleteDetectIncompleteBoxes
()
{
grid
.
drawHorizontal
(
0
,
1
,
1
);
assertFalse
(
grid
.
boxComplete
(
1
,
1
));
}
@Test
public
void
drawMethodsDetectRedrawnLines
()
{
grid
.
drawHorizontal
(
0
,
0
,
1
);
assertThrows
(
IllegalStateException
.
class
,
()
->
{
grid
.
drawHorizontal
(
0
,
0
,
1
);
});
grid
.
drawVertical
(
0
,
0
,
1
);
assertThrows
(
IllegalStateException
.
class
,
()
->
{
grid
.
drawVertical
(
0
,
0
,
1
);
});
}
@Test
@Test
public
void
testTestSuiteRuns
()
{
public
void
testTestSuiteRuns
()
{
logger
.
info
(
"Dummy test to show the test suite runs"
);
logger
.
info
(
"Dummy test to show the test suite runs"
);
...
...
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