summaryrefslogtreecommitdiff
path: root/Tests/XCTest/StaticLibExampleTests/StaticLibExampleTests.m
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/XCTest/StaticLibExampleTests/StaticLibExampleTests.m')
-rw-r--r--Tests/XCTest/StaticLibExampleTests/StaticLibExampleTests.m16
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/XCTest/StaticLibExampleTests/StaticLibExampleTests.m b/Tests/XCTest/StaticLibExampleTests/StaticLibExampleTests.m
new file mode 100644
index 0000000000..5f8a769f5a
--- /dev/null
+++ b/Tests/XCTest/StaticLibExampleTests/StaticLibExampleTests.m
@@ -0,0 +1,16 @@
+#import <XCTest/XCTest.h>
+
+#import "StaticLibExample/StaticLibExample.h"
+
+@interface StaticLibExampleTests : XCTestCase
+
+@end
+
+@implementation StaticLibExampleTests
+
+- (void)testFourtyFour {
+ // This is an example of a functional test case.
+ XCTAssertEqual(44, FourtyFour());
+}
+
+@end