module Main where -------------------------------------------------------------------------------- import Test.Framework import Test.Framework.Providers.QuickCheck2 import Tests.Lazy ( testgroup_Lazy ) import Tests.Strict ( testgroup_Strict ) -------------------------------------------------------------------------------- main :: IO () main = defaultMain tests tests :: [Test] tests = [ testgroup_Lazy , testgroup_Strict ] --------------------------------------------------------------------------------