mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-26 04:09:35 +03:00
17 lines
288 B
Objective-C
17 lines
288 B
Objective-C
#import <XCTest/XCTest.h>
|
|
|
|
#import "FrameworkExample/FrameworkExample.h"
|
|
|
|
@interface FrameworkExampleTests : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation FrameworkExampleTests
|
|
|
|
- (void)testFourtyTwo {
|
|
// This is an example of a functional test case.
|
|
XCTAssertEqual(42, FourtyTwo());
|
|
}
|
|
|
|
@end
|