diff options
| author | joel.hinz <joel.hinz@gmail.com> | 2015-02-20 07:47:43 +0000 |
|---|---|---|
| committer | joel.hinz <joel.hinz@gmail.com> | 2015-02-20 07:47:43 +0000 |
| commit | 2394763daaedab05fe3fa35635317dfaca7092bf (patch) | |
| tree | b3de50a3af5d344f74fb0545ce9931b285277166 /src/ui/ios/gf-ios-swiftTests | |
| parent | f848857519bfb093310503108ff62297ea9f8a24 (diff) | |
translation app for iOS, replicating some of the functionality of the Android app. Compiles and works on iPad retina but may crash and has known issues.
Diffstat (limited to 'src/ui/ios/gf-ios-swiftTests')
| -rw-r--r-- | src/ui/ios/gf-ios-swiftTests/Info.plist | 24 | ||||
| -rw-r--r-- | src/ui/ios/gf-ios-swiftTests/gf_ios_swiftTests.swift | 28 |
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. + } + } + +} |
