assertSame("result", m, result);
}
@Test
public void testApplyIncomingFilters2() throws Throwable {
BaseChannel x25Channel = new X25Channel(null, new ServerSocket());
byte[] header = new byte[1];
byte[] image = new byte[1];
ISOMsg result = x25Channel.applyIncomingFilters(null, header, image, new LogEvent("testBaseChannelTag"));
assertNull("result", result);
}