Represents the string result
Inheritance: IResult
コード例 #1
0
ファイル: StringResultTest.cs プロジェクト: sys27/xFunc
        public void ToStringTest()
        {
            var result = new StringResult("hello");

            Assert.Equal("hello", result.ToString());
        }
コード例 #2
0
ファイル: StringResultTest.cs プロジェクト: sys27/xFunc
        public void ResultTest()
        {
            var result = new StringResult("hello");

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