public void GetAllReviewsForTape_ReturnsOk() { var result = controller.GetAllReviewsForTape(1); Assert.IsInstanceOfType(result, typeof(OkObjectResult)); var actual = result as OkObjectResult; Assert.AreEqual(200, actual.StatusCode); }