Bickle.Tests.Describing_a_spec.Can_describe_greater_than C# (CSharp) Method

Can_describe_greater_than() private method

private Can_describe_greater_than ( ) : void
return void
        public void Can_describe_greater_than()
        {
            int foo = 4;
            int bar = 5;
            string description = SpecDescriber.DescribeSpec(() => foo > bar);
            description.ShouldBe("foo should be greater than bar");
        }