Ambiguous type name 'SomeClass' in 'AnotherClass'
原因
Testターゲットの"Build Phases">"Compile Sources"に、テスト対象のソースを含めてしまっていたせいのようだった。
解決方法
"Compile Sources"には、テストクラスのみにした。
参考:
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)
を追加する。
参考:
https://stackoverflow.com/questions/34990175/test-target-x-encountered-an-error-early-unexpected-exit-operation-never-finis
onmyway133/TestTarget