mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 17:32:00 +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]
|