ModelBuilder.UnitTests.ValueGeneratorMatcherTests.IsSupportedThrowsExceptionWithNullTypeTest C# (CSharp) 메소드

IsSupportedThrowsExceptionWithNullTypeTest() 개인적인 메소드

private IsSupportedThrowsExceptionWithNullTypeTest ( ) : void
리턴 void
        public void IsSupportedThrowsExceptionWithNullTypeTest()
        {
            var buildChain = new LinkedList<object>();

            var target = new WrapperGenerator("Test");

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

            action.ShouldThrow<ArgumentNullException>();
        }