blob: a05ddb103d1562d69f5f6d9afbc98da03cf2ddf2 (
plain)
1
2
3
4
5
6
7
8
|
module Main where
import Properties
import Test.Framework.Providers.QuickCheck2
import Test.Framework.Runners.Console (defaultMain)
import Test.QuickCheck
main = defaultMain [ Properties.tests ]
|