E4132

E4132#

Invalid test parameter. Only one parameter with type @test.T is allowed.

错误示例#

test (name : String) {
  ...
}

建议#

It is not yet possible to pass custom parameters to tests, and you have to use the predefined @test.T type.

test (it : @test.T) {
  ...
}

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

test {
  ...
}