mirror of
https://github.com/wnagrodzki/iNapi.git
synced 2025-04-05 03:41:50 +02:00
32 lines
434 B
Objective-C
32 lines
434 B
Objective-C
//
|
|
// iNapiTests.m
|
|
// iNapiTests
|
|
//
|
|
// Created by Wojtek Nagrodzki on 25/02/2012.
|
|
// Copyright (c) 2012 Trifork. All rights reserved.
|
|
//
|
|
|
|
#import "iNapiTests.h"
|
|
|
|
@implementation iNapiTests
|
|
|
|
- (void)setUp
|
|
{
|
|
[super setUp];
|
|
|
|
// Set-up code here.
|
|
}
|
|
|
|
- (void)tearDown
|
|
{
|
|
// Tear-down code here.
|
|
|
|
[super tearDown];
|
|
}
|
|
|
|
- (void)testExample
|
|
{
|
|
STFail(@"Unit tests are not implemented yet in iNapiTests");
|
|
}
|
|
|
|
@end
|