LoginSignup
6

More than 5 years have passed since last update.

[覚書]XCodeでユニットテスト時のエラー

Last updated at Posted at 2018-02-19

Ambiguous type name 'SomeClass' in 'AnotherClass'

原因

Testターゲットの"Build Phases">"Compile Sources"に、テスト対象のソースを含めてしまっていたせいのようだった。

解決方法

"Compile Sources"には、テストクラスのみにした。

スクリーンショット 2018-02-19 15.11.44.png

参考:

Ambiguous type name in Swift unit test

Test target X encountered an error (Early unexpected exit, operation never finished bootstrapping - no restart will be attempted

解決方法:

"Build Settings">"Linking">"Runpath Search Paths"に $(FRAMEWORK_SEARCH_PATHS) を追加する。

スクリーンショット 2018-02-19 15.02.25.png

参考:

https://stackoverflow.com/questions/34990175/test-target-x-encountered-an-error-early-unexpected-exit-operation-never-finis
onmyway133/TestTarget

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
What you can do with signing up
6