Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 827 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 827 Bytes

#Xcode File Templates There is currently just the Expecta file template, maybe some other templats will follow. ##Using the Templates Simply paste the templates to ~/Library/Developer/Xcode/Templates/File Templates/ or use the included scripts to add/remove a specific template.

##Templates ###Expecta file template

If you want to test the class Foo, just use the Expecta template, enter the classname and it will generate a new class called FooSpec with a simple layout and all necessary imports.

The generated class looks like this:

//
//  FooSpec.m
//  ASCProject
//
//  Created by André Schneider on 07.03.14.
//  Copyright (c) 2014 André Schneider. All rights reserved.
//

#import <Specta/Specta.h>
#define EXP_SHORTHAND
#import <Expecta/Expecta.h>
#import "Foo.h"

SpecBegin(Foo)

SpecEnd