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

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

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

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

            action.ShouldThrow<ArgumentNullException>();
        }