1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-12 14:28:08 +03:00
juvix/test/Typecheck.hs

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]