mirror of
https://github.com/wnagrodzki/iNapi.git
synced 2025-04-05 03:41:50 +02:00
33 lines
434 B
Mathematica
33 lines
434 B
Mathematica
|
//
|
||
|
// 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
|