Spaces:
Running
on
Zero
Running
on
Zero
File size: 343 Bytes
275b9f3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
/**
* Represents a LINE communication test step.
*/
class LineTestStep {
/**
* @param {TestCaseStep} testCaseStep
*/
constructor(testCaseStep) {
this.testCaseStep = testCaseStep;
}
/**
* Creates the test step.
*/
create() {
var lineApi = new LineApi();
lineApi.sendMessage(this.testCaseStep.message);
}
} |