sourcephile
/
git
/
haskell
/
symantic.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Make stack flags customizable in GNUmakefile.
[haskell/symantic.git]
/
symantic-lib
/
Language
/
Symantic
/
Test.hs
1
module Test where
2
3
import Test.Tasty
4
5
import qualified Typing.Test as Typing
6
import qualified Lib.Test as Lib
7
8
main :: IO ()
9
main =
10
defaultMain $
11
testGroup "Language.Symantic"
12
[ Typing.tests
13
, Lib.tests
14
]