Skip to content

Instantly share code, notes, and snippets.

@brlinton
Last active January 4, 2016 13:59
Show Gist options
  • Save brlinton/8631396 to your computer and use it in GitHub Desktop.
Save brlinton/8631396 to your computer and use it in GitHub Desktop.
The default XCode unit test scaffolding
//
// TipCalculatorTests.m
// TipCalculatorTests
//
// Created by Brandon Linton on 1/25/14.
// Copyright (c) 2014 Brandon. All rights reserved.
//
#import <XCTest/XCTest.h>
@interface TipCalculatorTests : XCTestCase
@end
@implementation TipCalculatorTests
- (void)setUp
{
[super setUp];
// Put setup code here. This method is called before the invocation of each test method in the class.
}
- (void)tearDown
{
// Put teardown code here. This method is called after the invocation of each test method in the class.
[super tearDown];
}
- (void)testExample
{
XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment