Currently running a Parameterised test with a Dictionary parameter causes a runtime error: Can't fully extract function signature of 'func test_getRelativePositionOfPoint('
Describe the solution you'd like
I want to write a parameterised test that contains Dictionary parameters.
The parser should understand all ways to create Dictionary values; e.g. { "test1": "value1", test2 = "value2" }
Describe alternatives you've considered
Currently I have to convert the dictionary contents to an indexed array, or add a separate parameter for each dictionary entry.
Bug description I want to define a parameterised test where the parameter array contains a Dictionary value. e.g.:
Currently running a Parameterised test with a Dictionary parameter causes a runtime error:
Can't fully extract function signature of 'func test_getRelativePositionOfPoint('
Describe the solution you'd like I want to write a parameterised test that contains Dictionary parameters. The parser should understand all ways to create Dictionary values; e.g. { "test1": "value1", test2 = "value2" }
Describe alternatives you've considered Currently I have to convert the dictionary contents to an indexed array, or add a separate parameter for each dictionary entry.
Additional context None.