Represents the string result
상속: IResult
예제 #1
0
        public void ToStringTest()
        {
            var result = new StringResult("hello");

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

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