- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/pivotal/cedar
- 软件文档: https://github.com/pivotal/cedar/wiki
- 官方下载: https://github.com/pivotal/cedar
软件介绍
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", ^{
[@"internationalization" length] should equal(20);
});
describe(@"isEqualToString:", ^{
it(@"should return true if the strings are the same", ^{
[@"someString" isEqualToString:@"someString"] should be_truthy;
});
it(@"should return false if the strings are not the same", ^{
[@"someString" isEqualToString:@"anotherString"] should be_falsy;
});
});
});
Advanced Web Metrics with Google Analytics
Brian Clifton / Sybex / 2008 / USD 39.99
Are you getting the most out of your website? Google insider and web metrics expert Brian Clifton reveals the information you need to get a true picture of your site's impact and stay competitive usin......一起来看看 《Advanced Web Metrics with Google Analytics》 这本书的介绍吧!
