assumeNotNull(this.device);
final DeviceList list = new DeviceList();
LibUsb.getDeviceList(this.context, list);
try
{
final Device parent = LibUsb.getParent(this.device);
// We cannot test anything else here. Parent can be null if our
// test device is a root device. We just make sure that it can't
// be the device itself.
assertNotEquals(parent, this.device);