VerifyCreateRequestWithNullType() public méthode

public VerifyCreateRequestWithNullType ( ) : void
Résultat void
        public void VerifyCreateRequestThrowsExceptionWithNullTypeTest()
        {
            var target = new DummyTypeCreator();

            Action action = () => target.VerifyCreateRequestWithNullType();

            action.ShouldThrow<ArgumentNullException>();
        }