ModelBuilder.UnitTests.PhoneValueGeneratorTests.IsSupportedThrowsExceptionWithNullTypeTest C# (CSharp) Méthode

IsSupportedThrowsExceptionWithNullTypeTest() private méthode

private IsSupportedThrowsExceptionWithNullTypeTest ( ) : void
Résultat void
        public void IsSupportedThrowsExceptionWithNullTypeTest()
        {
            var target = new PhoneValueGenerator();

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

            action.ShouldThrow<ArgumentNullException>();
        }