E4132

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 ( : ) {
  ()
  (1 + 1, 2)
}

Or you can remove the parameter if it is not needed:

test {
  (3 + 3, 6)
}