mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
19 lines
467 B
Swift
19 lines
467 B
Swift
// RUN: %target-run-simple-swift
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import StdlibUnittest
|
|
import Foundation
|
|
|
|
var tests = TestSuite("NSDictionary")
|
|
|
|
tests.test("copy construction") {
|
|
let expected = ["A":1, "B":2, "C":3, "D":4]
|
|
let x = NSDictionary(dictionary: expected as NSDictionary)
|
|
expectEqual(expected, x as! Dictionary)
|
|
let y = NSMutableDictionary(dictionary: expected as NSDictionary)
|
|
expectEqual(expected, y as NSDictionary as! Dictionary)
|
|
}
|
|
|
|
runAllTests()
|