Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Simple BDD for iOS

License

NotificationsYou must be signed in to change notification settings

kiwi-bdd/Kiwi

Repository files navigation

Kiwi Logo

Kiwi: Simple BDD for iOS

Build Status

Kiwi is a Behavior Driven Development library for iOS development.The goal is to provide a BDD library that is exquisitely simple to setup and use.

Why?

The idea behind Kiwi is to have tests that are more readable than what is possible with the bundled test framework.

Tests (or rather specs) are written in Objective-C and run within the comfort of Xcode to provide a test environment that is as unobtrusive and seamless as possible in terms of running tests and error reporting.

Specs look like this:

describe(@"Team", ^{context(@"when newly created", ^{it(@"has a name", ^{id team = [Teamteam];            [[team.nameshould]equal:@"Black Hawks"];        });it(@"has 11 players", ^{id team = [Teamteam];            [[[teamshould]have:11]players];        });    });});

Documentation

TheKiwi Wiki is the official documentation source.

Getting it

To install viaCocoaPods, add this to yourPodfile:

pod"Kiwi"

Or viaCarthage, add this toCartfile.private:

github "kiwi-bdd/Kiwi"

Support

For all the questions / suggestions you have, that aren't bug reports please use ourGoogle Group


[8]ページ先頭

©2009-2025 Movatter.jp