iOS單元測試和UI測試全面解析(25)
發表于:2017-03-31來源:51CTO作者:朱先忠點擊數:
標簽:單元測試iOS
letdataTask=controllerUnderTest?.defaultSession.dataTask( with :url!){ data,response,error in //ifHTTPrequest is successful,callupdateSearchResults(_:)whichparsestheresponsedata into Tracks ifleterror
let dataTask = controllerUnderTest?.defaultSession.dataTask(with: url!) {
data, response, error in
// if HTTP request is successful, call updateSearchResults(_:) which parses the response data into Tracks
if let error = error {
print(error.localizedDescription)
} else if let httpResponse = response as? HTTPURLResponse {
if httpResponse.statusCode == 200 {
原文轉自:http://mobile.51cto.com/iphone-535758.htm