cmake/Tests/XCTest/StaticLibExampleTests/StaticLibExampleTests.m
2017-07-20 19:35:53 +02:00

17 lines
290 B
Objective-C

#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