ModelBuilder.UnitTests.ValueGeneratorMatcherTests.IsSupportedThrowsExceptionWithNullTypeTest C# (CSharp) Method

IsSupportedThrowsExceptionWithNullTypeTest() private method

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

            var target = new WrapperGenerator("Test");

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

            action.ShouldThrow<ArgumentNullException>();
        }