-- | -- Copyright : (c) Raghu Kaippully, 2020 -- License : MPL-2.0 -- Maintainer : rkaippully@gmail.com -- module Main where import Test.Tasty (TestTree, defaultMain, testGroup) import Properties (propertyTests) import Unit (unitTests) main :: IO () main = defaultMain allTests allTests :: TestTree allTests = testGroup "Tests" [unitTests, propertyTests, systemTests] systemTests :: TestTree systemTests = testGroup "System Tests" []