public void intersectionEmpty() {
final IntegerInterval a = interval( null, 0 );
final IntegerInterval b = interval( 1, null );
assertNull( a.intersection( b ) );
assertNull( b.intersection( a ) );
}
/**
* Verify that intervals overlapping just on an inclusive bound intersect to
* a point.