Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Turtle Graphics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MAST
Teaching
SE1
Turtle Graphics
Commits
9e6d9be0
Verified
Commit
9e6d9be0
authored
1 year ago
by
Biryuk, Volodymyr
Browse files
Options
Downloads
Patches
Plain Diff
Add unit test for turtle
parent
759cb9e8
Branches
dev
Branches containing commit
No related tags found
1 merge request
!3
Remove redundant colors and method to get colors
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
TurtleTest.java
+66
-0
66 additions, 0 deletions
TurtleTest.java
with
66 additions
and
0 deletions
TurtleTest.java
0 → 100644
+
66
−
0
View file @
9e6d9be0
import
static
org
.
junit
.
jupiter
.
api
.
Assertions
.*;
import
org.junit.jupiter.api.AfterEach
;
import
org.junit.jupiter.api.BeforeEach
;
import
org.junit.jupiter.api.Test
;
import
java.util.*
;
import
java.awt.*
;
/**
* The test class TurtleTest.
*
* @author Volodymyr Biryuk
* @version 30. November 2023
*/
public
class
TurtleTest
{
private
Turtle
_turtle
;
/**
* Default constructor for test class TurtleTest
*/
public
TurtleTest
()
{
}
/**
* Sets up the test fixture.
*
* Called before every test case method.
*/
@BeforeEach
public
void
setUp
()
{
_turtle
=
new
Turtle
();
}
@Test
public
void
farbenTest
()
{
Color
[]
expected
=
{
Color
.
BLACK
,
Color
.
BLUE
,
Color
.
CYAN
,
Color
.
DARK_GRAY
,
Color
.
GRAY
,
Color
.
GREEN
,
Color
.
LIGHT_GRAY
,
Color
.
MAGENTA
,
Color
.
PINK
,
Color
.
YELLOW
};
Color
[]
actual
=
_turtle
.
gibFarben
();
assertEquals
(
expected
.
length
,
actual
.
length
);
for
(
int
i
=
0
;
i
<
actual
.
length
;
i
++)
{
Color
actual_
=
actual
[
i
];
Color
expected_
=
expected
[
i
];
assertEquals
(
expected_
,
actual_
);
}
}
/**
* Tears down the test fixture.
*
* Called after every test case method.
*/
@AfterEach
public
void
tearDown
()
{
}
}
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