aboutsummaryrefslogtreecommitdiffstats
path: root/test/Test.hs
blob: 22cdb29907ce6bdf520fa4e86c3724d9ec368091 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Main where

import Property
import Test.Tasty
import Unit

tests :: TestTree
tests = testGroup "Tests" [unitTests, propertyTests]

main :: IO ()
main = defaultMain tests