/** * 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(); } } }