8
6

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.

[覚書]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

8
6
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
8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?