// The first long[] is > the second
assertEquals( 1, comparator.compare( new long[]
{}, null ) );
assertEquals( 1, comparator.compare( new long[]
{ 1L }, null ) );
assertEquals( 1, comparator.compare( new long[]
{ 1L, 2L }, new long[]
{ 1L, 1L } ) );
assertEquals( 1, comparator.compare( new long[]
{ 1L, 2L, 1L }, new long[]
{ 1L, 2L } ) );