mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 10:47:32 +03:00
9 lines
218 B
Haskell
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]
|