iOS單元測試和UI測試全面解析(22)
發表于:2017-03-31來源:51CTO作者:朱先忠點擊數:
標簽:單元測試iOS
lettestBundle=Bundle( for :type( of :self)) letpath=testBundle.path(forResource: abbaData ,ofType: json ) letdata=try?Data(contentsOf:URL(fileURLWithPath:path!),options:.alwaysMapped) leturl=URL(strin
-
let testBundle = Bundle(for: type(of: self))
-
let path = testBundle.path(forResource: "abbaData", ofType: "json")
-
let data = try? Data(contentsOf: URL(fileURLWithPath: path!), options: .alwaysMapped)
-
-
let url = URL(string: "https://itunes.apple.com/search?media=music&entity=song&term=abba")
-
let urlResponse = HTTPURLResponse(url: url!, statusCode: 200, httpVersion: nil, headerFields: nil)
-
原文轉自:http://mobile.51cto.com/iphone-535758.htm