Cedar是Objective-C上BDD风格的单元测试框架。describe(@"Example specs on NSString", ^{    it(@"lowercaseString returns a new string with everything in lower case", ^{        [@"FOOBar" lowercaseString] should equal(@"foobar");    });    it(@"length returns the number of characters in the string", ^