我正在尝试编写测试用例并尝试访问返回单个对象的方法。为此,我想使用 toBlocking 但我无法访问它并收到以下错误:
“Single<[Property]>”(又名“PrimitiveSequence>”)类型的值没有成员“toBlocking”
以下是我的代码
do {
let property = try viewModel.getPropertyList(city: "1530")
.toBlocking()
.single()
XCTAssertNotNil(property)
} catch {
XCTFail("Get user settings failed")
}
已导入以下框架:
import RxCocoa
import RxSwift
import XCTest