ModelBuilder.UnitTests.DummyTypeCreator.VerifyCreateRequestWithNullType C# (CSharp) Méthode

VerifyCreateRequestWithNullType() public méthode

public VerifyCreateRequestWithNullType ( ) : void
Résultat void
        public void VerifyCreateRequestWithNullType()
        {
            VerifyCreateRequest(null, null, null);
        }

Usage Example

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

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

            action.ShouldThrow<ArgumentNullException>();
        }