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

IsSupportedThrowsExceptionWithNullTypeTest() private méthode

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

            var target = new WrapperGenerator("Test");

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

            action.ShouldThrow<ArgumentNullException>();
        }