File tree Expand file tree Collapse file tree 5 files changed +12
-4
lines changed
jovial-engine-clojure.test/src/main/clojure/org/ajoberstar/jovial/engine
src/test/resources/sample Expand file tree Collapse file tree 5 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 8282 (execute-node child listener))))
8383 (catch Throwable e
8484 (test/do-report {:type :error :message " Uncaught exception, in fixtures." :expected nil :actual e}))))
85- (.executionFinished listener descriptor (result *throwables*))))
85+ (.executionFinished listener descriptor (result @ *throwables*))))
8686
8787(defmulti jovial-report :type )
8888
Original file line number Diff line number Diff line change @@ -17,5 +17,5 @@ repositories {
1717
1818dependencies {
1919 compile ' org.junit.platform:junit-platform-console:1.1.0'
20- compile ' org.ajoberstar.jovial:jovial-engine-clojure.test:0.2.0-rc.2 '
20+ compile ' org.ajoberstar.jovial:jovial-engine-clojure.test:0.2.0'
2121}
Original file line number Diff line number Diff line change @@ -17,13 +17,14 @@ repositories {
1717 name = ' ajoberstar'
1818 url = ' https://dl.bintray.com/ajoberstar/maven'
1919 }
20+ mavenLocal()
2021 }
2122}
2223
2324dependencies {
2425 compile ' org.clojure:clojure:1.8.0'
2526 testCompile ' junit:junit:4.12'
26- testRuntime ' org.ajoberstar.jovial:jovial-engine-clojure.test:0.2.0-rc.2 '
27+ testRuntime ' org.ajoberstar.jovial:jovial-engine-clojure.test:0.2.0'
2728 testRuntime ' org.junit.vintage:junit-vintage-engine:5.1.0'
2829}
2930
Original file line number Diff line number Diff line change 66
77(deftest my-sample-fails
88 (is (= 5 (+ 2 2 ))))
9+
10+ (deftest multiple-fails
11+ (testing " this is a set of stuff"
12+ (is (= 4 (* 2 2 )))
13+ (is (= 5 (* 2 2 ))))
14+ (testing " second set of stuff"
15+ (is (= 6 (* 2 4 )) " This isn't true" )))
Original file line number Diff line number Diff line change 7777 <dependency >
7878 <groupId >org.ajoberstar.jovial</groupId >
7979 <artifactId >jovial-engine-clojure.test</artifactId >
80- <version >0.2.0-rc.2 </version >
80+ <version >0.2.0</version >
8181 </dependency >
8282 </dependencies >
8383 <configuration >
You can’t perform that action at this time.
0 commit comments