mirror of
https://github.com/anoma/juvix.git
synced 2024-12-26 09:04:18 +03:00
18 lines
490 B
Haskell
18 lines
490 B
Haskell
module Tree.Transformation where
|
|
|
|
import Base
|
|
import Tree.Transformation.Apply qualified as Apply
|
|
import Tree.Transformation.CheckNoAnoma qualified as CheckNoAnoma
|
|
import Tree.Transformation.IdentityTrans qualified as IdentityTrans
|
|
import Tree.Transformation.Reachability qualified as Reachability
|
|
|
|
allTests :: TestTree
|
|
allTests =
|
|
testGroup
|
|
"JuvixTree transformations"
|
|
[ IdentityTrans.allTests,
|
|
Apply.allTests,
|
|
Reachability.allTests,
|
|
CheckNoAnoma.allTests
|
|
]
|