コード例 #1
0
        public void FromDelimitedString_WithAllProperties_ReturnsCorrectlyInitializedFields()
        {
            IType expected = new TelephoneNumber
            {
                Value = "1"
            };

            IType actual = new TelephoneNumber();

            actual.FromDelimitedString("1");

            expected.Should().BeEquivalentTo(actual);
        }