我有一个股票标准类调用GeoRSSParserDelegate需要测试。
原文链接:https://www.f2er.com/swift/320428.html在我的快速单元测试中,我得到了:
func testParser() { var bundle = NSBundle(forClass:GeoRSSParserTest.classForKeyedArchiver()) var path = bundle.pathForResource("test",ofType: "xml") let data = NSData.dataWithContentsOfFile(path,options: NSDataReadingOptions.DataReadingMapped,error: nil) let xmlParser = NSXMLParser(data:data) let delegate = GeoRSSParserDelegate() <-- Compiler fails here var bStatus = xmlParser.parse() XCTAssertTrue(bStatus,"Parse Failed",file: __FILE__,line: __LINE__) }
编译器在上面突出显示的行失败。编译器错误是使用未解析的标识符GeorRSSParserDelegate
该类确实存在并与产品本身一起构建。有什么特别要求吗?