Added first test suite with first test (questionable .cabal though)

This commit is contained in:
Jonas Betzendahl
2014-04-27 23:49:15 +02:00
parent b3c25a1326
commit f5f1f760cd
3 changed files with 52 additions and 1 deletions

20
tests/MainTestSuite.hs Normal file
View File

@ -0,0 +1,20 @@
module Main where
import Test.Framework
import Test.Framework.Providers.QuickCheck2
import Map.Map
main :: IO ()
main = defaultMain tests
tests :: [Test]
tests =
[
testGroup "Map.Map"
[
testProperty "remdups idempotency" prop_rd_idempot
]
]