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

VerifyPopulateRequestWithNullType() public method

public VerifyPopulateRequestWithNullType ( ) : void
return void
        public void VerifyPopulateRequestWithNullType()
        {
            VerifyPopulateRequest(null, null, null);
        }

Usage Example

コード例 #1
0
        public void VerifyPopulateRequestThrowsExceptionWithNullTypeTest()
        {
            var target = new DummyTypeCreator();

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

            action.ShouldThrow<ArgumentNullException>();
        }