
Yet another great code spellchecker: https://github.com/crate-ci/typos/ (Will be added later as a `pre-commit` hook)
17 lines
288 B
Objective-C
17 lines
288 B
Objective-C
#import <XCTest/XCTest.h>
|
|
|
|
#import "StaticLibExample/StaticLibExample.h"
|
|
|
|
@interface StaticLibExampleTests : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation StaticLibExampleTests
|
|
|
|
- (void)testFortyFour {
|
|
// This is an example of a functional test case.
|
|
XCTAssertEqual(44, FortyFour());
|
|
}
|
|
|
|
@end
|