mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 01:52:11 +03:00
9 lines
231 B
Haskell
9 lines
231 B
Haskell
|
module Termination (allTests) where
|
||
|
|
||
|
import Base
|
||
|
import Termination.Negative qualified as N
|
||
|
import Termination.Positive qualified as P
|
||
|
|
||
|
allTests :: TestTree
|
||
|
allTests = testGroup "Termination checker tests" [P.allTests, N.allTests]
|