Bickle.Tests.Describing_a_spec.Can_describe_greater_than C# (CSharp) 메소드

Can_describe_greater_than() 개인적인 메소드

private Can_describe_greater_than ( ) : void
리턴 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");
        }