@@ -16,6 +16,7 @@ class TestNSError : XCTestCase {
16
16
return [
17
17
( " test_LocalizedError_errorDescription " , test_LocalizedError_errorDescription) ,
18
18
( " test_NSErrorAsError_localizedDescription " , test_NSErrorAsError_localizedDescription) ,
19
+ ( " test_NSError_inDictionary " , test_NSError_inDictionary) ,
19
20
( " test_CustomNSError_domain " , test_CustomNSError_domain) ,
20
21
( " test_CustomNSError_userInfo " , test_CustomNSError_userInfo) ,
21
22
( " test_CustomNSError_errorCode " , test_CustomNSError_errorCode) ,
@@ -39,6 +40,14 @@ class TestNSError : XCTestCase {
39
40
let error = nsError as Error
40
41
XCTAssertEqual ( error. localizedDescription, " Localized! " )
41
42
}
43
+
44
+ func test_NSError_inDictionary( ) {
45
+ let error = NSError ( domain: " domain " , code: 42 , userInfo: nil )
46
+ let nsdictionary = [ " error " : error] as NSDictionary
47
+ let dictionary = nsdictionary as? Dictionary < String , Error >
48
+ XCTAssertNotNil ( dictionary)
49
+ XCTAssertEqual ( error, dictionary ? [ " error " ] as NSError ? )
50
+ }
42
51
43
52
func test_CustomNSError_domain( ) {
44
53
let name = testBundleName ( )
0 commit comments