public void ShouldSetToFalse()
        {
            var target = new OpenReportEnabledInput {
                SuppliedInput = false
            };

            target.Validate().ShouldBeFalse();
        }
        public void ShouldSetToTrue()
        {
            var target = new OpenReportEnabledInput {
                SuppliedInput = true
            };

            target.Validate().ShouldBeTrue();
        }