ModelBuilder.UnitTests.DomainNameValueGeneratorTests.IsSupportedThrowsExceptionWithNullTypeTest C# (CSharp) Method

IsSupportedThrowsExceptionWithNullTypeTest() private method

private IsSupportedThrowsExceptionWithNullTypeTest ( ) : void
return void
        public void IsSupportedThrowsExceptionWithNullTypeTest()
        {
            var target = new DomainNameValueGenerator();

            Action action = () => target.IsSupported(null, null, null);

            action.ShouldThrow<ArgumentNullException>();
        }
    }