mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
35 lines
460 B
Mathematica
35 lines
460 B
Mathematica
|
|
//
|
||
|
|
// 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
|