ModelBuilder.UnitTests.ExecuteStrategyExtensionTests.CreateThrowsExceptionWithNullStrategyTest C# (CSharp) Method

CreateThrowsExceptionWithNullStrategyTest() private method

private CreateThrowsExceptionWithNullStrategyTest ( ) : void
return void
        public void CreateThrowsExceptionWithNullStrategyTest()
        {
            IExecuteStrategy target = null;

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

            action.ShouldThrow<ArgumentNullException>();
        }