public void CanLandShouldReturnOkForLanding(
            [Range(5, 15)]
            int x,
            [Range(5, 15)]
            int y)
        {
            var result = _sut.CanLand(x, y);

            Assert.AreEqual(RocketLandingResponseConsts.OkForLanding, result);
        }
        public ActionResult CanLand(int x, int y)
        {
            var canLandResponse = _rocketLandingService.CanLand(x, y);

            return(Ok(canLandResponse));
        }