Files
swift-mirror/test/1_stdlib/NSArrayAPI.swift
Dave Abrahams ac3f047496 [stdlib] Renaming fallout from Mirror API review
toString(x)      => String(x)
toDebugString(x) => String(reflecting: x)
Printable        => CustomStringConvertible
DebugPrintable   => CustomDebugStringConvertible

Also updated comments to clarify these protocols

Swift SVN r27090
2015-04-07 20:32:26 +00:00

46 lines
1.2 KiB
Swift

// RUN: %target-run-simple-swift
// REQUIRES: objc_interop
import StdlibUnittest
import Foundation
var NSArrayAPI = TestSuite("NSArrayAPI")
NSArrayAPI.test("mixed types with AnyObject") {
if true {
let result: AnyObject = [1, "two"]
let expect: NSArray = [1, "two"]
expectEqual(expect, result as! NSArray)
}
if true {
let result: AnyObject = [1, 2]
let expect: NSArray = [1, 2]
expectEqual(expect, result as! NSArray)
}
}
NSArrayAPI.test("CustomStringConvertible") {
let result = String(NSArray(objects:"A", "B", "C", "D"))
let expect = "(\n A,\n B,\n C,\n D\n)"
expectEqual(expect, result)
}
NSArrayAPI.test("copy construction") {
let expected = ["A", "B", "C", "D"]
let x = NSArray(array: expected as NSArray)
expectEqual(expected, x as! Array)
let y = NSMutableArray(array: expected as NSArray)
expectEqual(expected, y as NSArray as! Array)
}
var NSMutableArrayAPI = TestSuite("NSMutableArrayAPI")
NSMutableArrayAPI.test("CustomStringConvertible") {
let result = String(NSMutableArray(objects:"A", "B", "C", "D"))
let expect = "(\n A,\n B,\n C,\n D\n)"
expectEqual(expect, result)
}
runAllTests()