use of com.alibaba.otter.canal.protocol.CanalEntry.EventType in project canal by alibaba.
the class DdlResultTest method getTypeOutputNull.
// Test written by Diffblue Cover.
@Test
public void getTypeOutputNull() {
// Arrange
final DdlResult objectUnderTest = new DdlResult();
// Act
final EventType actual = objectUnderTest.getType();
// Assert result
Assert.assertNull(actual);
}
Aggregations