ModelBuilder.UnitTests.DefaultTypeCreatorTests.CreateThrowsExceptionWithNullTypeTest C# (CSharp) 메소드

CreateThrowsExceptionWithNullTypeTest() 개인적인 메소드

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

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

            action.ShouldThrow<ArgumentNullException>();
        }
    }