Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
s220231273_a2
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
Carla Baldassara
s220231273_a2
Commits
02798088
Commit
02798088
authored
3 years ago
by
Carla Baldassara
Browse files
Options
Downloads
Patches
Plain Diff
Do not fix the bugs in the commit. The units tests should fail.
parent
29858cb3
No related branches found
Branches containing commit
Tags
testsfail
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
+58
-31
58 additions, 31 deletions
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
with
58 additions
and
31 deletions
src/test/java/dotsandboxes/DotsAndBoxesGridTest.java
+
58
−
31
View file @
02798088
package
dotsandboxes
;
package
dotsandboxes
;
import
org.junit.jupiter.api.*
;
import
org.junit.jupiter.api.*
;
import
static
org
.
junit
.
jupiter
.
api
.
Assertions
.*;
import
static
org
.
junit
.
jupiter
.
api
.
Assertions
.*;
import
static
org
.
junit
.
jupiter
.
api
.
Assumptions
.*;
import
static
org
.
junit
.
jupiter
.
api
.
Assertions
.
assertThrows
;
import
static
org
.
junit
.
jupiter
.
api
.
Assumptions
.*;
import
org.apache.logging.log4j.LogManager
;
import
org.apache.logging.log4j.Logger
;
import
org.apache.logging.log4j.LogManager
;
import
org.apache.logging.log4j.Logger
;
public
class
DotsAndBoxesGridTest
{
/*
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
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
* Tests are functions that have an @Test annotation before them.
* or more assertions to check that a condition holds.
* 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
*
*/
* This is a dummy test just to show that the test suite itself runs
@Test
*/
public
void
testTestSuiteRuns
()
{
@Test
logger
.
info
(
"Dummy test to show the test suite runs"
);
public
void
testTestSuiteRuns
()
{
assertTrue
(
true
);
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.
}
// FIXME: You need to write tests for the two known bugs in the code.
@Test
public
void
testBoxComplete
()
{
logger
.
info
(
"testing whether the box is complete is wrong"
);
int
x
=
1
;
int
y
=
1
;
int
p
=
1
;
DotsAndBoxesGrid
z
=
new
DotsAndBoxesGrid
(
x
,
y
,
p
);
assertTrue
(
z
.
boxComplete
(
x
,
y
));
}
@Test
public
void
testExistingLine
(){
logger
.
info
(
"testing exception is thrown when line exists"
);
int
x
=
1
;
int
y
=
1
;
int
p
=
1
;
DotsAndBoxesGrid
z
=
new
DotsAndBoxesGrid
(
x
,
y
,
p
);
z
.
getHorizontal
(
x
,
y
);
assertThrows
(
IllegalStateException
.
class
,
()
->
z
.
drawHorizontal
(
x
,
y
,
p
),
"The line exists"
);
}
}
\ No newline at end of file
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