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

VerifyPopulateRequestWithNullType() public méthode

public VerifyPopulateRequestWithNullType ( ) : void
Résultat void
        public void VerifyPopulateRequestWithNullType()
        {
            VerifyPopulateRequest(null, null, null);
        }

Usage Example

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

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

            action.ShouldThrow<ArgumentNullException>();
        }