Represents the string result
Inheritance: IResult
Example #1
0
        public void ToStringTest()
        {
            var result = new StringResult("hello");

            Assert.Equal("hello", result.ToString());
        }
Example #2
0
        public void ResultTest()
        {
            var result = new StringResult("hello");

            Assert.Equal("hello", result.Result);
        }