cmake/Tests/XCTest/StaticLibExampleTests/StaticLibExampleTests.m

17 lines
290 B
Mathematica
Raw Normal View History

2017-07-20 19:35:53 +02:00
#import <XCTest/XCTest.h>
#import "StaticLibExample/StaticLibExample.h"
@interface StaticLibExampleTests : XCTestCase
@end
@implementation StaticLibExampleTests
- (void)testFourtyFour {
// This is an example of a functional test case.
XCTAssertEqual(44, FourtyFour());
}
@end