File size: 323 Bytes
275b9f3
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { LineCommunicationTestCreator } from '../LineCommunicationTestCreator';

describe('LineCommunicationTestCreator', () => {
  it('should create test cases', () => {
    const creator = new LineCommunicationTestCreator();
    creator.createTestcases();
    // Assert that the test cases are created correctly
  });
});