blob: 5f8a769f5a1ed23addc14bfffbe3c7cc54128e9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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
|