@brunofuster

www.wesaveapp.com

Archive for the ‘Uncategorized’ Category

Kiwi: Simple BDD for iOS

leave a comment »

Github

https://github.com/allending/Kiwi

Docs

https://github.com/allending/Kiwi/wiki

Screencast

http://nsscreencast.com/episodes/4-automated-testing-with-kiwi/play

Code sample

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];
        });
    });
});

Written by brunofuster

February 28, 2012 at 5:27 pm

Posted in Uncategorized