kenken999's picture
test
275b9f3
raw
history blame
186 Bytes
/**
* Represents the test case configuration.
*/
class TestConfig {
/**
* @param {object} config
*/
constructor(config) {
this.testCaseSteps = config.testCaseSteps;
}
}