コード例 #1
0
        public void ToString_with_maxVariable_should_return_expected_result(CollationMaxVariable maxVariable, string expectedResult)
        {
            var result = Collation.ToString(maxVariable);

            result.Should().Be(expectedResult);
        }
コード例 #2
0
        public void ToString_with_maxVariable_should_return_expected_result(CollationMaxVariable maxVariable, string expectedResult)
        {
            var result = Collation.ToString(maxVariable);

            result.Should().Be(expectedResult);
        }
コード例 #3
0
        public void ToCollationMaxVariable_should_return_expected_result(string value, CollationMaxVariable expectedResult)
        {
            var result = Collation.ToCollationMaxVariable(value);

            result.Should().Be(expectedResult);
        }
コード例 #4
0
        public void ToCollationMaxVariable_should_return_expected_result(string value, CollationMaxVariable expectedResult)
        {
            var result = Collation.ToCollationMaxVariable(value);

            result.Should().Be(expectedResult);
        }