@Test
public void testShouldIgnore() throws Throwable {
BaseChannel xMLChannel = new XMLChannel();
byte[] b = new byte[0];
boolean result = xMLChannel.shouldIgnore(b);
assertFalse("result", result);
}
@Test
public void testStreamReceive() throws Throwable {