@DependsOnMethod("testSet")
public void testSetAsPrimitive() {
createBox();
assertPreviousEquals("westBoundLongitude", new Longitude(-20), -14.0);
assertPreviousEquals("eastBoundLongitude", new Longitude( 30), 26 );
assertPreviousEquals("southBoundLatitude", new Latitude (-10), -7f );
assertPreviousEquals("northBoundLatitude", new Latitude ( 40), (short) 33);
assertEquals("westBoundLongitude", -14, box.getWestBoundLongitude(), STRICT);
assertEquals("eastBoundLongitude", 26, box.getEastBoundLongitude(), STRICT);
assertEquals("southBoundLatitude", -7, box.getSouthBoundLatitude(), STRICT);
assertEquals("northBoundLatitude", 33, box.getNorthBoundLatitude(), STRICT);