kenken999's picture
test
275b9f3
raw
history blame
343 Bytes
/**
* 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);
}
}