Specta
A light-weight TDD / BDD framework for Objective-C.
WHAT'S NEW IN 0.3.0 beta 1
- Xcode 6 / iOS 8 support.
- Option to shuffle tests. (Set environment variable
SPECTA_SHUFFLE
with value1
to enable this feature.)
BREAKING CHANGES IN 0.3.0 beta 1
^AsyncBlock
is replaced bywaitUntil
. See example for usage.
FEATURES
- Support for both Objective-C.
- RSpec-like BDD DSL
- Quick and easy set up
- Built on top of XCTest
- Excellent Xcode integration
SCREENSHOT
SETUP
Use CocoaPods
target :MyApp do
# your app dependencies
end
target :MyAppTests do
pod 'Specta', '~> 0.3.0.beta1'
# pod 'Expecta', '~> 0.3.1' # expecta matchers
# pod 'OCMock', '~> 2.2.1' # OCMock
# pod 'OCHamcrest', '~> 3.0.0' # hamcrest matchers
# pod 'OCMockito', '~> 1.0.0' # OCMock
# pod 'LRMocky', '~> 0.9.1' # LRMocky
end
or:
- Clone from Github.
- Run
rake
in project root to build. - Add a "Cocoa/Cocoa Touch Unit Testing Bundle" target if you don't already have one.
- Copy and add all header files in
Products
folder to the Test target in your Xcode project. - For OS X projects, copy and add
Specta.framework
inProducts/osx
folder to the test target in your Xcode project. For iOS projects, copy and addSpecta.framework
inProducts/ios
folder to the test target in your Xcode project. You can alternatively uselibSpecta.a
, if you prefer to add it as a static library for your project. (iOS 7 and below require this) - Add
-ObjC
and-all_load
to the "Other Linker Flags" build setting for the test target in your Xcode project. - Add the following to your test code.
#import <Specta/Specta.h> // #import "Specta.h" if you're using cocoapods or libSpecta.a
Standard XCTest matchers such as XCTAssertEqualObjects
and XCTAssertNil
work, but you probably want to add a nicer matcher framework - Expecta to your setup. Or if you really prefer, OCHamcrest works fine too. Also, add a mocking framework: OCMock.
EXAMPLE
#import <Specta/Specta.h> // #import "Specta.h" if you're using cocoapods or libSpecta.a
SharedExamplesBegin(MySharedExamples)
// Global shared examples are shared across all spec files.
sharedExamplesFor(@"a shared behavior", ^(NSDictionary *data) {
it(@"should do some stuff", ^{
id obj = data[@"key"];
// ...
});
});
SharedExamplesEnd
SpecBegin(Thing)
describe(@"Thing", ^{
sharedExamplesFor(@"another shared behavior", ^(NSDictionary *data) {
// Locally defined shared examples can override global shared examples within its scope.
});
beforeAll(^{
// This is run once and only once before all of the examples
// in this group and before any beforeEach blocks.
});
beforeEach(^{
// This is run before each example.
});
it(@"should do stuff", ^{
// This is an example block. Place your assertions here.
});
it(@"should do some stuff asynchronously", ^{
waitUntil(^(DoneCallback done) {
// Async example blocks need to invoke done() callback.
done();
});
});
itShouldBehaveLike(@"a shared behavior", @{@"key" : @"obj"});
itShouldBehaveLike(@"another shared behavior", ^{
// Use a block that returns a dictionary if you need the context to be evaluated lazily,
// e.g. to use an object prepared in a beforeEach block.
return @{@"key" : @"obj"};
});
describe(@"Nested examples", ^{
it(@"should do even more stuff", ^{
// ...
});
});
pending(@"pending example");
pending(@"another pending example", ^{
// ...
});
afterEach(^{
// This is run after each example.
});
afterAll(^{
// This is run once and only once after all of the examples
// in this group and after any afterEach blocks.
});
});
SpecEnd
beforeEach
andafterEach
are also aliased asbefore
andafter
respectively.describe
is also aliased ascontext
.it
is also aliased asexample
andspecify
.itShouldBehaveLike
is also aliased asitBehavesLike
.- Use
pending
or prependx
todescribe
,context
,example
,it
, andspecify
to mark examples or groups as pending. - Use
^(DoneCallback done)
as shown in the example above to make examples wait for completion.done()
callback needs to be invoked to let Specta know that your test is complete. The default timeout is 10.0 seconds but this can be changed by calling the functionsetAsyncSpecTimeout(NSTimeInterval timeout)
. (before|after)(Each/All)
also accept^(DoneCallback done)
s.- Do
#define SPT_CEDAR_SYNTAX
before importing Specta if you prefer to writeSPEC_BEGIN
andSPEC_END
instead ofSpecBegin
andSpecEnd
. - Prepend
f
to yourdescribe
,context
,example
,it
, andspecify
to set focus on examples or groups. When specs are focused, all unfocused specs are skipped. - To use original XCTest reporter, set an environment variable named
SPECTA_REPORTER_CLASS
toSPTXCTestReporter
in your test scheme. - Set an environment variable
SPECTA_NO_SHUFFLE
with value1
to disable test shuffling. - Set an environment variable
SPECTA_SEED
to specify the random seed for test shuffling.
RUNNING TESTS IN COMMAND LINE
- Use Facebook's xctool.
CONTRIBUTION GUIDELINES
- Please use only spaces and indent 2 spaces at a time.
- Please prefix instance variable names with a single underscore (
_
). - Please prefix custom classes and functions defined in the global scope with
SPT
.
LICENSE
Copyright (c) 2012-2014 Specta Team. This software is licensed under the MIT License.