VerifyCreateRequestWithNullType() public method

public VerifyCreateRequestWithNullType ( ) : void
return void
        public void VerifyCreateRequestThrowsExceptionWithNullTypeTest()
        {
            var target = new DummyTypeCreator();

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

            action.ShouldThrow<ArgumentNullException>();
        }