]> Git — Sourcephile - haskell/symantic.git/blob - symantic-lib/test/Main.hs
Separate tests into test/.
[haskell/symantic.git] / symantic-lib / test / Main.hs
1 module Main where
2
3 import Test.Tasty
4
5 import Golden
6 import HUnit
7
8 main :: IO ()
9 main = do
10 goldens <- goldensIO
11 defaultMain $
12 testGroup "Symantic"
13 [ goldens
14 , hunits
15 ]