File tree Expand file tree Collapse file tree 7 files changed +17
-17
lines changed
test/java/net/gamrath/junitpredict Expand file tree Collapse file tree 7 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 55 <modelVersion >4.0.0</modelVersion >
66
77 <groupId >net.gamrath.testpredictions</groupId >
8- <artifactId >junit-test-predictions </artifactId >
8+ <artifactId >junit-predict </artifactId >
99 <version >1.0-SNAPSHOT</version >
1010 <packaging >jar</packaging >
1111
12- <name >JUnit Test Predictions </name >
12+ <name >JUnit Predict </name >
1313 <description >A JUnit 5 extension for predicting test outcomes interactively.</description >
14- <url >https://github.com/cgt/junit-test-predictions </url >
14+ <url >https://github.com/cgt/junit-predict </url >
1515
1616 <licenses >
1717 <license >
2929 </developers >
3030
3131 <scm >
32- <url >https://github.com/cgt/junit-test-predictions </url >
33- <connection >scm:git:git://github.com/cgt/junit-test-predictions .git</connection >
34- <developerConnection >scm:git:ssh://github.com:cgt/junit-test-predictions .git</developerConnection >
32+ <url >https://github.com/cgt/junit-predict </url >
33+ <connection >scm:git:git://github.com/cgt/junit-predict .git</connection >
34+ <developerConnection >scm:git:ssh://github.com:cgt/junit-predict .git</developerConnection >
3535 </scm >
3636
3737 <properties >
Original file line number Diff line number Diff line change 1- package net .gamrath .testpredictions ;
1+ package net .gamrath .junitpredict ;
22
33import java .util .Collection ;
44import java .util .function .Predicate ;
Original file line number Diff line number Diff line change 1- package net .gamrath .testpredictions ;
1+ package net .gamrath .junitpredict ;
22
33import org .junit .jupiter .api .extension .AfterAllCallback ;
44import org .junit .jupiter .api .extension .AfterTestExecutionCallback ;
Original file line number Diff line number Diff line change 1+ package net .gamrath .junitpredict ;
2+
3+ enum TestResult {
4+ PASS , FAIL
5+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- package net .gamrath .testpredictions ;
1+ package net .gamrath .junitpredict ;
22
33import org .junit .jupiter .api .Disabled ;
44import org .junit .jupiter .api .Test ;
Original file line number Diff line number Diff line change 1- package net .gamrath .testpredictions ;
1+ package net .gamrath .junitpredict ;
22
33import org .junit .jupiter .api .Test ;
44
55import java .util .List ;
66
7- import static net .gamrath .testpredictions .Prediction .ALL_PASS ;
8- import static net .gamrath .testpredictions .Prediction .ANY_FAIL ;
7+ import static net .gamrath .junitpredict .Prediction .ALL_PASS ;
8+ import static net .gamrath .junitpredict .Prediction .ANY_FAIL ;
99import static org .junit .jupiter .api .Assertions .assertFalse ;
1010import static org .junit .jupiter .api .Assertions .assertTrue ;
1111
You can’t perform that action at this time.
0 commit comments