Kiwi alternatives and similar libraries
Based on the "TDD / BDD" category.
Alternatively, view Kiwi alternatives based on common mentions on social networks and blogs.
-
OHHTTPStubs
Stub your network requests easily! Test your apps with fake network data and custom response time, response code and headers! -
swift-corelibs-xctest
The XCTest Project, A Swift core library for providing unit test support -
SwiftyMocky
Framework for automatic mock generation. Adds a set of handy methods, simplifying testing. One of the best and most complete solutions, including generics support and much more. -
PlaygroundTDD
Small library to easily run your tests directly within a Playground
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Kiwi or a related project?
Popular Comparisons
README
[Kiwi Logo](Kiwi-Logo.png)
Kiwi: Simple BDD for iOS
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 = [Team team];
[[team.name should] equal:@"Black Hawks"];
});
it(@"has 11 players", ^{
id team = [Team team];
[[[team should] have:11] players];
});
});
});
Documentation
The Kiwi Wiki is the official documentation source.
Getting it
To install via CocoaPods, add this to your Podfile
:
pod "Kiwi"
Or via Carthage, add this to Cartfile.private
:
github "kiwi-bdd/Kiwi"
Support
For all the questions / suggestions you have, that aren't bug reports please use our Google Group