value

public abstract String value()(source)

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

Then a test case could look like this:


    
    = "GameControllerDummyState.json", customConverters = "customConverters")
    public void testHandleKeyboardInputsEscapeLose(final JsonParameterSet params)
    throws InterruptedException, IOException {
        testHandleKeyboardInputsEscape(params, true);
    }

Return

the path to the JSON file containing the test data.