kenken999's picture
test
275b9f3
raw
history blame
491 Bytes
/**
* Represents a LINE communication test case.
*/
class LineTestCase {
/**
* @param {TestConfig} testConfig
*/
constructor(testConfig) {
this.testConfig = testConfig;
}
/**
* Creates the test case.
*/
create() {
var testCaseSteps = this.testConfig.testCaseSteps;
for (var i = 0; i < testCaseSteps.length; i++) {
var testCaseStep = testCaseSteps[i];
var lineTestStep = new LineTestStep(testCaseStep);
lineTestStep.create();
}
}
}