Skip to content
Snippets Groups Projects
Commit 1369bffa authored by Käppler Johannes Maximilian's avatar Käppler Johannes Maximilian
Browse files

Testautomatisierung

parent b4e7dd2a
No related branches found
No related tags found
No related merge requests found
......@@ -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
......@@ -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());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment