aboutsummaryrefslogtreecommitdiffstats
path: root/test/Test.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/Test.hs')
-rw-r--r--test/Test.hs11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Test.hs b/test/Test.hs
new file mode 100644
index 0000000..08a4799
--- /dev/null
+++ b/test/Test.hs
@@ -0,0 +1,11 @@
+module Main where
+
+import Property
+import Test.Tasty
+import Test.VeriFuzz
+import Unit
+
+tests :: TestTree
+tests = testGroup "Tests" [unitTests, propertyTests]
+
+main = defaultMain tests