症状
XcodeのユニットテストXCTestのビルドにおいて "Use of unresolved identifier xxxx " とエラーが表示される。
原因
テスト対象のモジュールがイントートされていない。
対応
@testable import xxxxx をテストコードに追記する
xxxTest.swift
1 2 3 4 5 6 |
import XCTest + @testable import MyTargetModule class xxxTest: XCTestCase { ... |