如何修复@testable导入无法在Xcode单元测试中加载模块 [英] How to fix @testable import failed to load module in xcode unit testing

查看:120
本文介绍了如何修复@testable导入无法在Xcode单元测试中加载模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个未经单元测试的Xcode项目.当我尝试创建新的单元测试并尝试导入@testable import'ProjectName'时,我已经添加了可可豆荚,它给出了错误:无法加载模块'ProjectName'.你能帮我解决问题吗

I had created an Xcode project without unit testing. I have added cocoa pods when I try to create a new unit testing and try to import @testable import 'ProjectName' it gives an error Failed to load module 'ProjectName'. can u please help me out to solve the problem

@testable导入'ProjectName'无法加载模块

@testable import 'ProjectName' Failed to load module

推荐答案

像这样更新Podfile并检查

Update Podfile like this and check

target 'App' do
  pod 'Alamofire'

  target 'Demo AppTests' do
    inherit! :search_paths

  end

  target 'Demo AppUITests' do
    inherit! :search_paths

  end  
end

这篇关于如何修复@testable导入无法在Xcode单元测试中加载模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆