1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-28 10:04:49 +03:00
juvix/test/Tree/Transformation.hs

18 lines
490 B
Haskell
Raw Normal View History

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
]