2024-01-29 19:43:08 +03:00
|
|
|
module Tree.Transformation where
|
|
|
|
|
|
|
|
import Base
|
2024-01-30 18:46:10 +03:00
|
|
|
import Tree.Transformation.Apply qualified as Apply
|
2024-03-21 18:44:14 +03:00
|
|
|
import Tree.Transformation.CheckNoAnoma qualified as CheckNoAnoma
|
2024-06-07 19:40:42 +03:00
|
|
|
import Tree.Transformation.IdentityTrans qualified as IdentityTrans
|
2024-01-30 23:01:07 +03:00
|
|
|
import Tree.Transformation.Reachability qualified as Reachability
|
2024-01-29 19:43:08 +03:00
|
|
|
|
|
|
|
allTests :: TestTree
|
|
|
|
allTests =
|
|
|
|
testGroup
|
|
|
|
"JuvixTree transformations"
|
2024-06-07 19:40:42 +03:00
|
|
|
[ IdentityTrans.allTests,
|
2024-01-30 23:01:07 +03:00
|
|
|
Apply.allTests,
|
2024-03-21 18:44:14 +03:00
|
|
|
Reachability.allTests,
|
|
|
|
CheckNoAnoma.allTests
|
2024-01-29 19:43:08 +03:00
|
|
|
]
|