1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-26 09:04:18 +03:00
juvix/test/Tree/Transformation.hs
2024-06-07 18:40:42 +02:00

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
]