gh-somegeekintn-SimDirs/SimDirsTests/SimDirsTests.m
2014-09-10 09:39:00 -05:00

40 lines
862 B
Objective-C

//
// SimDirsTests.m
// SimDirsTests
//
// Created by Casey Fleser on 9/10/14.
// Copyright (c) 2014 Quiet Spark. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <XCTest/XCTest.h>
@interface SimDirsTests : XCTestCase
@end
@implementation SimDirsTests
- (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 {
// This is an example of a functional test case.
XCTAssert(YES, @"Pass");
}
- (void)testPerformanceExample {
// This is an example of a performance test case.
[self measureBlock:^{
// Put the code you want to measure the time of here.
}];
}
@end