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();
        }
Ejemplo n.º 4
0
        public void ShouldHaveHelpText()
        {
            var target = new WithBaselineInput();

            target.HelpText.ShouldBe(@"EXPERIMENTAL: Use results stored in stryker dashboard to only test new mutants. | default: 'False'");
        }