}
public void testCreateChannel() throws Exception
{
final IntHolder channelID = new IntHolder();
final TypedEventChannel channel = factory_.create_typed_channel(new Property[0], new Property[0], channelID);
assertNotNull(channel);
final TypedEventChannel lookup = factory_.get_typed_event_channel(channelID.value);
assertTrue(channel._is_equivalent(lookup));
int[] all_typed_channels = factory_.get_all_typed_channels();
assertTrue(Arrays.binarySearch(all_typed_channels, channelID.value) >= 0);
}