mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-12-18 19:11:37 +03:00
16 lines
267 B
Haskell
Executable File
16 lines
267 B
Haskell
Executable File
module Main where
|
|
|
|
import Test.Framework (Test, defaultMain, testGroup)
|
|
|
|
import Cases
|
|
import Examples
|
|
|
|
main :: IO ()
|
|
main = defaultMain allTests
|
|
|
|
allTests :: [Test]
|
|
allTests = map (uncurry testGroup)
|
|
[ ("Test Cases", testCases)
|
|
, ("Examples", testExamples)
|
|
]
|