public void ReturnsResponseWithStatus()
        {
            var response = _classUnderTest.Execute();

            response.Success.Should().BeTrue();
            response.Message.Should().BeEquivalentTo("test: " + _description);
        }
예제 #2
0
        public void ReturnsResponseWithStatus()
        {
            var response = _classUnderTest.Execute();

            Assert.NotNull(response);
            Assert.True(response.Success);
            Assert.AreEqual(response.Message, "test: " + _description);
        }