summaryrefslogtreecommitdiff
path: root/src/ui/ios/gf-ios-swiftTests
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/ios/gf-ios-swiftTests')
-rw-r--r--src/ui/ios/gf-ios-swiftTests/Info.plist24
-rw-r--r--src/ui/ios/gf-ios-swiftTests/gf_ios_swiftTests.swift28
2 files changed, 52 insertions, 0 deletions
diff --git a/src/ui/ios/gf-ios-swiftTests/Info.plist b/src/ui/ios/gf-ios-swiftTests/Info.plist
new file mode 100644
index 000000000..fe7f434fb
--- /dev/null
+++ b/src/ui/ios/gf-ios-swiftTests/Info.plist
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>CFBundleDevelopmentRegion</key>
+ <string>en</string>
+ <key>CFBundleExecutable</key>
+ <string>$(EXECUTABLE_NAME)</string>
+ <key>CFBundleIdentifier</key>
+ <string>GF.$(PRODUCT_NAME:rfc1034identifier)</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleName</key>
+ <string>$(PRODUCT_NAME)</string>
+ <key>CFBundlePackageType</key>
+ <string>BNDL</string>
+ <key>CFBundleShortVersionString</key>
+ <string>1.0</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleVersion</key>
+ <string>1</string>
+</dict>
+</plist>
diff --git a/src/ui/ios/gf-ios-swiftTests/gf_ios_swiftTests.swift b/src/ui/ios/gf-ios-swiftTests/gf_ios_swiftTests.swift
new file mode 100644
index 000000000..8829b37a3
--- /dev/null
+++ b/src/ui/ios/gf-ios-swiftTests/gf_ios_swiftTests.swift
@@ -0,0 +1,28 @@
+import UIKit
+import XCTest
+
+class gf_ios_swiftTests: XCTestCase {
+
+ override func setUp() {
+ super.setUp()
+ // Put setup code here. This method is called before the invocation of each test method in the class.
+ }
+
+ override func tearDown() {
+ // Put teardown code here. This method is called after the invocation of each test method in the class.
+ super.tearDown()
+ }
+
+ func testExample() {
+ // This is an example of a functional test case.
+ XCTAssert(true, "Pass")
+ }
+
+ func testPerformanceExample() {
+ // This is an example of a performance test case.
+ self.measureBlock() {
+ // Put the code you want to measure the time of here.
+ }
+ }
+
+}