]> gitweb.michael.orlitzky.com - dead/htsn-import.git/blobdiff - test/TestSuite.hs
Add a tasty test suite and two tests for the existing XML modules.
[dead/htsn-import.git] / test / TestSuite.hs
diff --git a/test/TestSuite.hs b/test/TestSuite.hs
new file mode 100644 (file)
index 0000000..17d9a24
--- /dev/null
@@ -0,0 +1,12 @@
+import Test.Tasty ( TestTree, defaultMain, testGroup )
+
+import TSN.Injuries ( injuries_tests )
+import TSN.InjuriesDetail ( injuries_detail_tests )
+
+tests :: TestTree
+tests = testGroup
+          "All tests"
+          [ injuries_tests, injuries_detail_tests ]
+
+main :: IO ()
+main = defaultMain tests