ModelBuilder.UnitTests.DefaultTypeCreatorTests.CreateThrowsExceptionWithNullTypeTest C# (CSharp) Méthode

CreateThrowsExceptionWithNullTypeTest() private méthode

private CreateThrowsExceptionWithNullTypeTest ( ) : void
Résultat void
        public void CreateThrowsExceptionWithNullTypeTest()
        {
            var target = new DefaultTypeCreator();

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

            action.ShouldThrow<ArgumentNullException>();
        }
    }