ModelBuilder.UnitTests.DummyTypeCreator.VerifyCreateRequestWithNullType C# (CSharp) Method

VerifyCreateRequestWithNullType() public method

public VerifyCreateRequestWithNullType ( ) : void
return void
        public void VerifyCreateRequestWithNullType()
        {
            VerifyCreateRequest(null, null, null);
        }

Usage Example

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

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

            action.ShouldThrow<ArgumentNullException>();
        }