ModelBuilder.UnitTests.DefaultExecuteStrategyTests.CreateThrowsExceptionWhenNotInitializedTest C# (CSharp) 메소드

CreateThrowsExceptionWhenNotInitializedTest() 개인적인 메소드

private CreateThrowsExceptionWhenNotInitializedTest ( ) : void
리턴 void
        public void CreateThrowsExceptionWhenNotInitializedTest()
        {
            var target = new DefaultExecuteStrategy();

            Action action = () => target.Create(typeof(Person));

            action.ShouldThrow<InvalidOperationException>();
        }
DefaultExecuteStrategyTests