Files
swift-mirror/test/stdlib/StringFlatMap.swift
Arnold Schwaighofer c665c326d4 Add missing REQUIRES: executable_test
To get check-swift-only_non_executable clean again.
2017-09-12 14:50:15 -07:00

47 lines
1.1 KiB
Swift

// RUN: rm -rf %t ; mkdir -p %t
// RUN: %target-build-swift %s -o %t/a.out3 -swift-version 3 && %target-run %t/a.out3
// RUN: %target-build-swift %s -o %t/a.out4 -swift-version 4 && %target-run %t/a.out4
// REQUIRES: executable_test
import StdlibUnittest
#if swift(>=4)
public typealias ExpectedResultType = [Character]
let swiftVersion = "4"
#else
public typealias ExpectedResultType = [String]
let swiftVersion = "3"
#endif
var Tests = TestSuite("StringFlatMap")
Tests.test("DefaultReturnType/\(swiftVersion)") {
var result = ["hello", "world"].flatMap { $0 }
expectType(ExpectedResultType.self, &result)
}
Tests.test("ExplicitTypeContext/\(swiftVersion)") {
expectEqualSequence(["hello", "world"],
["hello", "world"].flatMap { $0 } as [String])
expectEqualSequence("helloworld".characters,
["hello", "world"].flatMap { $0 } as [Character])
}
Tests.test("inference/\(swiftVersion)") {
let result = [1, 2].flatMap { x in
if String(x) == "foo" {
return "bar"
} else {
return nil
}
}
expectEqualSequence([], result)
}
runAllTests()