Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TimeKillerApp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository 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
Graf Jonas Till
TimeKillerApp
Commits
1369bffa
Commit
1369bffa
authored
7 years ago
by
Käppler Johannes Maximilian
Browse files
Options
Downloads
Patches
Plain Diff
Testautomatisierung
parent
b4e7dd2a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChronoPhage_GUI/app/build.gradle
+5
-0
5 additions, 0 deletions
ChronoPhage_GUI/app/build.gradle
ChronoPhage_GUI/app/src/test/java/de/hdm/dp/bd/chronophage/model/TaskTest.java
+2
-0
2 additions, 0 deletions
...rc/test/java/de/hdm/dp/bd/chronophage/model/TaskTest.java
with
7 additions
and
0 deletions
ChronoPhage_GUI/app/build.gradle
+
5
−
0
View file @
1369bffa
...
...
@@ -180,4 +180,9 @@ task jacocoTestReport(type: JacocoReport, dependsOn: "test") {
xml
.
destination
file
(
"$project.buildDir/reports/jacoco/results.xml"
)
html
.
destination
file
(
"$project.buildDir/reports/jacoco/results"
)
}
}
afterEvaluate
{
assemble
.
dependsOn
lint
,
checkstyle
,
customFindbugs
,
jacocoTestReport
assembleDebug
.
dependsOn
lintDebug
,
checkstyle
,
customFindbugs
,
jacocoTestReport
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
ChronoPhage_GUI/app/src/test/java/de/hdm/dp/bd/chronophage/model/TaskTest.java
+
2
−
0
View file @
1369bffa
...
...
@@ -70,6 +70,8 @@ public class TaskTest {
@Test
public
void
isInactiveAfterEnded
()
{
this
.
task
.
end
();
assertFalse
(
this
.
task
.
isActive
());
this
.
task
.
start
();
this
.
task
.
end
();
assertFalse
(
this
.
task
.
isActive
());
...
...
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