ModelBuilder.UnitTests.DefaultTypeCreatorTests.CreateThrowsExceptionWithNullTypeTest C# (CSharp) Method

CreateThrowsExceptionWithNullTypeTest() private method

private CreateThrowsExceptionWithNullTypeTest ( ) : void
return void
        public void CreateThrowsExceptionWithNullTypeTest()
        {
            var target = new DefaultTypeCreator();

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

            action.ShouldThrow<ArgumentNullException>();
        }
    }