統計情報(30日間)


最新情報をツイート


人気の投稿

Simple BDD for iOS - Kiwi

このエントリーをはてなブックマークに追加


こんな感じでテストが書ける。
describe(@"Team", ^{
    context(@"when newly created", ^{
        it(@"should have a name", ^{
            id team = [Team team];
            [[team.name should] equal:@"Black Hawks"];
        });

        it(@"should have 11 players", ^{
            id team = [Team team];
            [[[team should] have:11] players];
        });
    });
});

日本語のチュートリアル記事も出ていた。

Leave a Reply