コード例 #1
0
        public void ShouldSetToFalse()
        {
            var target = new OpenReportEnabledInput {
                SuppliedInput = false
            };

            target.Validate().ShouldBeFalse();
        }
コード例 #2
0
        public void ShouldSetToTrue()
        {
            var target = new OpenReportEnabledInput {
                SuppliedInput = true
            };

            target.Validate().ShouldBeTrue();
        }