1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-14 08:27:03 +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]