ModelBuilder.UnitTests.CountryValueGeneratorTests.IsSupportedThrowsExceptionWithNullTypeTest C# (CSharp) Метод

IsSupportedThrowsExceptionWithNullTypeTest() приватный Метод

private IsSupportedThrowsExceptionWithNullTypeTest ( ) : void
Результат void
        public void IsSupportedThrowsExceptionWithNullTypeTest()
        {
            var target = new CountryValueGenerator();

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

            action.ShouldThrow<ArgumentNullException>();
        }
    }