1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-02 10:47:32 +03:00
juvix/test/Typecheck.hs

9 lines
218 B
Haskell
Raw Normal View History

module Typecheck (allTests) where
import Base
import Typecheck.Negative qualified as N
import Typecheck.Positive qualified as P
allTests :: TestTree
2023-12-01 18:50:37 +03:00
allTests = testGroup "Type checker tests" [P.allTests, N.allTests]