Files
CMake/Tests/XCTest/FrameworkExampleTests/FrameworkExampleTests.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
286 B
Objective-C

#import <XCTest/XCTest.h>
#import "FrameworkExample/FrameworkExample.h"
@interface FrameworkExampleTests : XCTestCase
@end
@implementation FrameworkExampleTests
- (void)testFortyTwo {
// This is an example of a functional test case.
XCTAssertEqual(42, FortyTwo());
}
@end