예제 #1
0
        public void carrier_broadcasts_location()
        {
            // Setup
            var provider = new Provider();

            // Test
            provider.BroadcastLocation();

            // Verify
            var location = provider.Location;
            var expected = location.Latitude > 0 && location.Longitude > 0;

            Assert.IsTrue(expected);
        }