1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-05 22:46:08 +03:00
juvix/test/TypeCheck.hs
2022-04-22 10:06:34 +02:00

9 lines
218 B
Haskell

module TypeCheck (allTests) where
import Base
import TypeCheck.Negative qualified as N
import TypeCheck.Positive qualified as P
allTests :: TestTree
allTests = testGroup "Type checker tests" [P.allTests, N.allTests]