]> Git — Sourcephile - haskell/symantic.git/blob - Language/LOL/Symantic/Expr/Test.hs
init
[haskell/symantic.git] / Language / LOL / Symantic / Expr / Test.hs
1 module Expr.Test where
2
3 import Test.Tasty
4
5 import qualified Expr.Lambda.Test as Lambda
6 import qualified Expr.Bool.Test as Bool
7 import qualified Expr.Int.Test as Int
8 import qualified Expr.Maybe.Test as Maybe
9 import qualified Expr.If.Test as If
10 import qualified Expr.Eq.Test as Eq
11
12 tests :: TestTree
13 tests =
14 testGroup "Expr"
15 [ Lambda.tests
16 , Bool.tests
17 , Int.tests
18 , Maybe.tests
19 , If.tests
20 , Eq.tests
21 ]