value
The path to the JSON file containing the test data.
it is recommended to replicate the java path structure in the resources.For example let's assume the following structure:
src/graderPrivate/java/h13/controller/scene/game/GameControllerTest.java
src/graderPrivate/resources/h13/controller/scene/game/GameControllerDummyState.json
Content copied to clipboard
Then a test case could look like this:
= "GameControllerDummyState.json", customConverters = "customConverters")
public void testHandleKeyboardInputsEscapeLose(final JsonParameterSet params)
throws InterruptedException, IOException {
testHandleKeyboardInputsEscape(params, true);
}
Content copied to clipboard
Return
the path to the JSON file containing the test data.