File size: 491 Bytes
275b9f3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * 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();
    }
  }
}