E4132#
Invalid test parameter. Only one parameter with type @test.Test is allowed.
Erroneous example#
test (name : String) {
ignore(name)
}
Suggestion#
It is not yet possible to pass custom parameters to tests, and you have to use
the predefined @test.Test type.
test (it : @test.Test) {
ignore(it)
@test.assert_eq(1 + 1, 2)
}
Or you can remove the parameter if it is not needed:
test {
@test.assert_eq(3 + 3, 6)
}