Esempio n. 1
0
        public void ValidateBoundingBox2DLatLonFailTest()
        {
            //not bl and tr
            BoundingBox2DLatLon bbox = new BoundingBox2DLatLon(-0.741023, 3.010479, -0.758809, 3.0567);

            Assert.ThrowsException <ServiceException>(() => bbox.Validate());
        }
Esempio n. 2
0
        public void ValidateBoundingBox2DLatLonSuccessTest()
        {
            BoundingBox2DLatLon bbox = new BoundingBox2DLatLon(-0.758809, 3.010479, -0.741023, 3.0567);

            bbox.Validate();
        }