VerifyCreateRequestWithNullType() 공개 메소드

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

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

            action.ShouldThrow<ArgumentNullException>();
        }