module Expr.Test where import Test.Tasty import qualified Expr.Lambda.Test as Lambda import qualified Expr.Bool.Test as Bool import qualified Expr.Int.Test as Int tests :: TestTree tests = testGroup "Expr" [ Lambda.tests , Bool.tests , Int.tests ]