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));
        }