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>();
        }
    }