1
1
mirror of https://github.com/anoma/juvix.git synced 2024-09-11 16:26:33 +03:00
juvix/test/Typecheck.hs
2023-12-01 16:50:37 +01: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]