mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-08 06:40:48 -06:00
Yet another great code spellchecker: https://github.com/crate-ci/typos/ (Will be added later as a `pre-commit` hook)
17 lines
286 B
Objective-C
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
|