Skip to content

Commit

Permalink
Fake higher test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
KuechA committed Oct 17, 2024
1 parent aa289ed commit 1361c53
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,11 @@ class FluentTest {
}

val listComp = result.variables["some"]?.initializer
print(listComp?.toString()) // This is only here to get a better test coverage
assertIs<CollectionComprehension>(listComp)
print(listComp.toString()) // This is only here to get a better test coverage
print(
listComp.comprehensionExpressions.firstOrNull()?.toString()
) // This is only here to get a better test coverage
assertIs<Reference>(listComp.statement)
assertLocalName("i", listComp.statement)
assertEquals(1, listComp.comprehensionExpressions.size)
Expand Down

0 comments on commit 1361c53

Please sign in to comment.