aboutsummaryrefslogtreecommitdiffstats
path: root/test/Unit.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/Unit.hs')
-rw-r--r--test/Unit.hs18
1 files changed, 13 insertions, 5 deletions
diff --git a/test/Unit.hs b/test/Unit.hs
index d911d2f..7878eaa 100644
--- a/test/Unit.hs
+++ b/test/Unit.hs
@@ -11,14 +11,18 @@ import VeriFuzz
unitTests :: TestTree
unitTests = testGroup
"Unit tests"
- [ testCase "Transformation of AST" $ assertEqual "Successful transformation"
- transformExpectedResult
- (transform trans transformTestData)
+ [ testCase "Transformation of AST" $ assertEqual
+ "Successful transformation"
+ transformExpectedResult
+ (transform trans transformTestData)
]
transformTestData :: Expr
transformTestData = BinOp
- (BinOp (BinOp (Id "id1") BinAnd (Id "id2")) BinAnd (BinOp (Id "id1") BinAnd (Id "id2")))
+ (BinOp (BinOp (Id "id1") BinAnd (Id "id2"))
+ BinAnd
+ (BinOp (Id "id1") BinAnd (Id "id2"))
+ )
BinAnd
(BinOp
(BinOp
@@ -74,7 +78,11 @@ transformExpectedResult = BinOp
[ Concat [Id "id1", Id "Replaced", Id "Replaced"]
, Id "Replaced"
, Id "Replaced"
- , Concat [Id "Replaced", Id "Replaced", Concat [Id "id1", Id "Replaced"]]
+ , Concat
+ [ Id "Replaced"
+ , Id "Replaced"
+ , Concat [Id "id1", Id "Replaced"]
+ ]
, Id "Replaced"
]
, Id "id1"