Ejemplo n.º 1
0
        public void ShouldProvideDefaultFalseWhenNull()
        {
            var target = new WithBaselineInput {
                SuppliedInput = null
            };

            var result = target.Validate();

            result.ShouldBeFalse();
        }
Ejemplo n.º 2
0
        public void ShouldNotBeEnabledWhenFalse()
        {
            var target = new WithBaselineInput {
                SuppliedInput = false
            };

            var result = target.Validate();

            result.ShouldBeFalse();
        }
Ejemplo n.º 3
0
        public void ShouldBeEnabledWhenTrue()
        {
            var target = new WithBaselineInput {
                SuppliedInput = true
            };

            var result = target.Validate();

            result.ShouldBeTrue();
        }