Exemplo n.º 1
0
        public void PhoneNumber_ShouldHaveMaxLength_10()
        {
            //---------------Set up test pack-------------------
            var sut=new Person();
            //---------------Assert Precondition----------------

            //---------------Execute Test ----------------------
            sut.ShouldHaveMaxLengthOf(10,o=>o.PhoneNumber);
            //---------------Test Result -----------------------
        }
Exemplo n.º 2
0
        public void Email_ShouldHaveMaxLength_512()
        {
            //---------------Set up test pack-------------------
            var sut=new Person();
            //---------------Assert Precondition----------------

            //---------------Execute Test ----------------------
            sut.ShouldHaveMaxLengthOf(512,o=>o.Email);
            //---------------Test Result -----------------------
        }