Пример #1
0
        public void GetNearestLocationCtgTest()
        {
            System.Collections.Generic.List<GeoLocation> districts = NewMethod();

            location location = new location
            {
                point = new locationPoint { pos = "22.3475 91.8123" }
            };

            var nearestGeoLocation = AimsDAL.GetNearestGeoLocation(districts, location);

            Assert.AreEqual("Chittagong", nearestGeoLocation.Name);
        }
Пример #2
0
        public void GetNearestLocationDahkaTest()
        {
            System.Collections.Generic.List<GeoLocation> districts = NewMethod();

            location location = new location
            {
                point = new locationPoint { pos = "23.72 90.38" }
            };

            var nearestGeoLocation = AimsDAL.GetNearestGeoLocation(districts, location);

            Assert.AreEqual("Dhaka", nearestGeoLocation.Name);
        }