assertEquals( -1, comparator.compare( null, new byte[]
{ ( byte ) 0xFF, 0x02 } ) );
assertEquals( -1, comparator.compare( new byte[]
{}, new byte[]
{ 0x01, 0x02 } ) );
assertEquals( -1, comparator.compare( new byte[]
{}, new byte[]
{ ( byte ) 0xFF, 0x02 } ) );
assertEquals( -1, comparator.compare( new byte[]
{ ( byte ) 0xFF, 0x01 }, new byte[]
{ 0x01, 0x01, 0x02 } ) );