Exemplo n.º 1
0
        public void Should_RunDiscovery(bool?shouldExecuteInfo, int?errorId, object errorModeBoxed, string path)
        {
            var commandScope = new ModelCommandScope <TestClass>();

            commandScope.ExecutionCondition = !shouldExecuteInfo.HasValue
                ? (Predicate <TestClass>)null
                : m =>
            {
                return(shouldExecuteInfo.Value);
            };

            commandScope.ErrorId = errorId;

            commandScope.ErrorMode = (ErrorMode)errorModeBoxed;

            commandScope.Path = path;

            commandScope.ScopeId = 123;

            var discoveryContext = Substitute.For <IDiscoveryContext>();

            commandScope.ShouldDiscover(discoveryContext, context =>
            {
                context.Received().EnterScope <TestClass>(Arg.Is(123));
            });
        }
Exemplo n.º 2
0
        public void Should_RunValidation_OnReferenceType(bool?shouldExecuteInfo, int?errorId, object errorModeBoxed, string path)
        {
            var commandScope = new ModelCommandScope <TestClass>();

            var model = new TestClass();

            var shouldExecuteCount = 0;

            commandScope.ExecutionCondition = !shouldExecuteInfo.HasValue
                ? (Predicate <TestClass>)null
                : m =>
            {
                m.Should().BeSameAs(model);
                shouldExecuteCount++;

                return(shouldExecuteInfo.Value);
            };

            commandScope.ErrorId = errorId;

            commandScope.ErrorMode = (ErrorMode)errorModeBoxed;

            commandScope.Path = path;

            commandScope.ScopeId = 123;

            var validationContext = Substitute.For <IValidationContext>();

            commandScope.ShouldValidate(
                model,
                validationContext,
                shouldExecuteInfo,
                context =>
            {
                context.Received().EnterScope(Arg.Is(123), Arg.Is(model));
            });

            shouldExecuteCount.Should().Be(shouldExecuteInfo.HasValue ? 1 : 0);
        }
Exemplo n.º 3
0
        public void Should_Initialize_WithDefaultValues()
        {
            var commandScope = new ModelCommandScope <TestClass>();

            commandScope.ShouldHaveDefaultValues();
        }
Exemplo n.º 4
0
 public void Should_Initialize()
 {
     _ = new ModelCommandScope <TestClass>();
 }