mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-01 13:28:39 +09:00
35 lines
460 B
Objective-C
35 lines
460 B
Objective-C
//
|
|
// ImageAlignmentTests.m
|
|
// ImageAlignmentTests
|
|
//
|
|
// Created by Andrei Stanescu on 7/29/13.
|
|
//
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
@interface ImageAlignmentTests : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation ImageAlignmentTests
|
|
|
|
- (void)setUp
|
|
{
|
|
[super setUp];
|
|
|
|
// Set-up code here.
|
|
}
|
|
|
|
- (void)tearDown
|
|
{
|
|
// Tear-down code here.
|
|
|
|
[super tearDown];
|
|
}
|
|
|
|
- (void)testExample
|
|
{
|
|
XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
|
|
}
|
|
|
|
@end
|