From 2394763daaedab05fe3fa35635317dfaca7092bf Mon Sep 17 00:00:00 2001 From: "joel.hinz" Date: Fri, 20 Feb 2015 07:47:43 +0000 Subject: 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. --- src/ui/ios/gf-ios-swiftTests/Info.plist | 24 +++++++++++++++++++ .../ios/gf-ios-swiftTests/gf_ios_swiftTests.swift | 28 ++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 src/ui/ios/gf-ios-swiftTests/Info.plist create mode 100644 src/ui/ios/gf-ios-swiftTests/gf_ios_swiftTests.swift (limited to 'src/ui/ios/gf-ios-swiftTests') 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 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + GF.$(PRODUCT_NAME:rfc1034identifier) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + + 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. + } + } + +} -- cgit v1.2.3