summaryrefslogtreecommitdiff
path: root/tests/integration.clj
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/integration.clj16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/integration.clj b/tests/integration.clj
new file mode 100644
index 0000000..c47b501
--- /dev/null
+++ b/tests/integration.clj
@@ -0,0 +1,16 @@
+(ns integration
+ (:require [clojure.test :as t :refer [are deftest is testing]]
+ [dtmc])
+ (:gen-class))
+
+
+
+(defn -main
+ [& _args]
+ (let [{:keys [fail error] :as res} (t/run-tests 'integration)
+ status (if (zero? (+ fail error))
+ 0
+ 1)]
+ (binding [*out* *err*]
+ (prn res))
+ (System/exit status)))