13
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

XCTestを始めるときにつまづいたこととその解決法

Last updated at Posted at 2018-12-06

既存のプロジェクトにXCTestを導入しようとしたら色々つまづいたので、その内容と解決法をシェアします。どなたかのお役に立てば幸いです。

環境:computer:

  • Xcode:10.1
  • macOS:10.14.1

前提:pushpin:

BridgingHeader問題:warning:

Testファイルに@testable import App名しようとしたら、BridgingHeaderのエラーが出てimportできず。(BridgingHeaderにはいつも悩まされている気がします。)

解決策:pick:

以下で欠けているものがあればやる。

①podfileに下記を追加してpod update

target 'YourProductTests' do
    inherit! :search_paths
    # Pods for testing
end

②Test Targetの Build Setting > Swift Compiler -Code Genration > Objective-C Bridging Header にbridging-headerのパスを追加

③Test Targetの Build Setting > Search PathのFramework Search PathHeader Search PathsLibrary Search Pathの3つに対して、Main targetと同じものを追加

→これらをすべてやることで、Testファイルで@testable import App名が呼べるようになりました。

Main Thread Checker問題:warning:

いざTestを実行すると、must be used from main thread onlyというエラーでクラッシュ。
少し調べるとMain Thread Checkerというワードが。
参考:iOS 11 Xcode 9で“だいぶまとも”に!新機能をまとめてみた | DevelopersIO

下記の記事にもあるように、Main Thread Checkerを無効にするのはあまり良いやり方ではなさそうです。
Xcode 9 環境 で GoogleAnalytics を動かすまでの軌跡 - Qiita

解決策:pick:

PodのFirebaseのバージョンを4.x系に上げる。(Firebaseが古いのが原因)

pod 'Firebase' , '~> 4.0'
pod 'Firebase/AdMob' , '~> 4.0'
pod 'Firebase/RemoteConfig' , '~> 4.0'

pod updateすると以下のようなエラーがたくさん出ますが、頑張ってポチポチやって解消します。

'FIRAnalytics' has been renamed to 'Analytics'
Extraneous argument label 'withName:' in call
kFIRParameterItemID' has been renamed to 'AnalyticsParameterItemID

→これでテストが通りました。やっとTest Succeededのマークが出てめっちゃうれしい。

参考になったサイト

13
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?