public void PostGeocache()
        {
            controller = new GeocacheApiController();
            Geocache geocache = new Geocache() { Name = "RustonWay2", Latitude = 47.238302M, Longitude = -122.491245M };
            var response = controller.Post(geocache);
            var contentResult = response as OkNegotiatedContentResult<Geocache>;

            Assert.IsNotNull(response);
            Assert.IsInstanceOfType(response, typeof(OkNegotiatedContentResult<Geocache>));
            Assert.IsNotNull(contentResult);
            Assert.AreEqual("RustonWay2", geocache.Name);
            Assert.AreEqual(47.238302M, geocache.Latitude);
            Assert.AreEqual(-122.491245M, geocache.Longitude);
        }
        public void PutNewGeocache()
        {
            controller = new GeocacheApiController();
            Geocache geocache = new Geocache() { ID = 13, Name = "RustonWay3", Latitude = 47.258302M, Longitude = -122.401245M };
            var response = controller.Put(geocache.ID, geocache);
            var contentResult = response as OkNegotiatedContentResult<Geocache>;

            Assert.IsNotNull(response);
            Assert.IsInstanceOfType(response, typeof(StatusCodeResult));
        }