Files
swift-mirror/validation-test/stdlib/WatchKit.swift
2016-04-06 09:16:39 -07:00

38 lines
1.0 KiB
Swift

// RUN: %target-run-simple-swift
// REQUIRES: executable_test
// REQUIRES: objc_interop
// REQUIRES: OS=watchos
import StdlibUnittest
import WatchKit
var WatchKitTests = TestSuite("WatchKit")
if #available(iOS 8.2, *) {
// This is a very weak test, but we can't do better without spawning a GUI app.
WatchKitTests.test("WKInterfaceController/reloadRootControllers(_:)") {
WKInterfaceController.reloadRootControllers([])
}
// This is a very weak test, but we can't do better without spawning a GUI app.
WatchKitTests.test("WKInterfaceController/presentController(_:)") {
let curried = WKInterfaceController.presentController(_:)
typealias ExpectedType =
(WKInterfaceController) -> ([(name: String, context: AnyObject)]) -> Void
let checkType: ExpectedType = curried
_blackHole(checkType)
// FIXME: can't write the following line: rdar://20985062
// expectType(ExpectedType.self, &curried)
let curried2 = WKInterfaceController.presentController as ExpectedType
}
} // #available(iOS 8.2, *)
runAllTests()