我正在为 iOS 应用程序编写 UI 测试。我想从本地 json 文件中读取数据。
我正在使用以下代码来获取我的 json 文件的路径:
func testExample() {
readJSON()
}
func readJSON(){
let bundle = Bundle(for:myTestClass.self)
if let path = bundle.url(forResource: "myurl", withExtension: "json"){
print("Got the path")
print(path)
}
else{
print("Invalid filename/path")
}
我尝试使用以下 stackoverflow 问题的解决方案: Reading in a JSON File Using Swift。没用!
另外,我查看了以下 Apple 文档: https ://developer.apple.com/swift/blog/?id=37
任何帮助将不胜感激!