From 9f829c41651cd2872b1c6e666b5bceeebf829aee Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Wed, 9 Jan 2019 21:13:04 +0000 Subject: Move tests to test --- test/Test.hs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/Test.hs (limited to 'test/Test.hs') 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 -- cgit