*/
@Test(expected = IllegalStateException.class)
public void testControlTransferWithUninitializedHandle()
{
assumeUsbTestsEnabled();
LibUsb.controlTransfer(new DeviceHandle(), (byte) 0, (byte) 0,
(short) 0, (short) 0, ByteBuffer.allocateDirect(1), 0);
}