cocoaPodsを利用してUITestを導入したときにMissing required module 'ライブラリ名'のエラー
はじめに
UITestを導入しようとして、参考文献をもとにiOS Unit Testing Bundle
を選び、作成されたBiblioTests.swift
にプロジェクト名を入れようとすると下記のようなエラーが出た
Missing required module 'Firebase'
Xcode Unit Testing with Cocoapods
によると
testTarget
用に項目を作る必要がありました
podfile(自分のターゲットの例)
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
use_frameworks!
target 'Biblio' do
////(導入しているライブラリ)
pod 'Firebase/Core'
pod 'Firebase/AdMob'
pod 'SnapKit', '~> 4.0.0'
pod 'fluid-slider'
////
target 'BiblioTests' do
inherit! :search_paths
pod 'Firebase'
end
end
もう一度下記をコマンドラインで実行
$ pod install
エラーが出なくなりました
参考文献
Author And Source
この問題について(cocoaPodsを利用してUITestを導入したときにMissing required module 'ライブラリ名'のエラー), 我々は、より多くの情報をここで見つけました https://qiita.com/nakagawa1017/items/d49232cf26c6ebcb69f0著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .