create tests for the OpenLayers.Bounds's getCenter functions

git-svn-id: http://svn.openlayers.org/trunk/openlayers@481 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
euzuro
2006-06-01 00:08:00 +00:00
parent cd8e9a61ec
commit 0c698ad7e0

View File

@@ -175,6 +175,23 @@
t.ok( !boundsA.equals(boundsC), "equals() returns false on two different bounds." );
}
function test_12_Bounds_getHeight_getWidth(t) {
t.plan( 2 );
var bounds = new OpenLayers.Bounds(10,20,100,120);
t.eq( bounds.getWidth(), 90, "getWidth() works" );
t.eq( bounds.getHeight(), 100, "getHeight() works" );
}
function test_13_Bounds_getCenters(t) {
t.plan( 2 );
var bounds = new OpenLayers.Bounds(0,20,100,120);
t.ok( bounds.getCenterPixel().equals(new OpenLayers.Pixel(50, 70)), "getCenterPixel() works correctly");
t.ok( bounds.getCenterLonLat().equals(new OpenLayers.LonLat(50, 70)), "getCenterLonLat() works correctly");
}
// -->
</script>
</head>