Spaces:
Running
on
Zero
Running
on
Zero
File size: 420 Bytes
275b9f3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/**
* Tests the LineCommunicationTestCreator class.
*/
function testCreateTestCase() {
var testConfig = new TestConfig({
testCaseSteps: [
{ message: 'Hello, world!' },
{ message: 'This is a test.' }
]
});
var lineCommunicationTestCreator = new LineCommunicationTestCreator();
lineCommunicationTestCreator.createTestCase(testConfig);
// Assert that the test case was created successfully
} |