Exemplo n.º 1
0
        public void GetCurrent_Success()
        {
            var location = _locationRepo.GetCurrent();

            Assert.True(
                location != null && location.Timestamp > 0
                );
        }
Exemplo n.º 2
0
 public Location GetCurrent()
 {
     return(_locationRepo.GetCurrent());
 }