VerifyPopulateRequestWithNullType() public method

public VerifyPopulateRequestWithNullType ( ) : void
return void
        public void VerifyPopulateRequestThrowsExceptionWithNullTypeTest()
        {
            var target = new DummyTypeCreator();

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

            action.ShouldThrow<ArgumentNullException>();
        }