VerifyCreateRequestWithNullType() публичный Метод

public VerifyCreateRequestWithNullType ( ) : void
Результат void
        public void VerifyCreateRequestThrowsExceptionWithNullTypeTest()
        {
            var target = new DummyTypeCreator();

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

            action.ShouldThrow<ArgumentNullException>();
        }