CMake/Tests/XCTest/StaticLibExampleTests/StaticLibExampleTests.m
Alex Turbov bc8621d999
Fix: A lot of typos in code found by typos
Yet another great code spellchecker: https://github.com/crate-ci/typos/

(Will be added later as a `pre-commit` hook)
2025-01-12 18:49:34 +04:00

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