回答:
ユニットテストハーネスは、あなたのコードを実行すると、あなたのユニットテストバンドルはありませメインバンドルで。
アプリケーションではなくテストを実行している場合でも、アプリケーションバンドルはメインバンドルのままです。(これにより、テストしているコードが間違ったバンドルを検索するのを防ぐことができます。)したがって、ユニットテストバンドルにリソースファイルを追加しても、メインバンドルを検索しても、リソースファイルは見つかりません。上記の行を次のように置き換えた場合:
NSBundle *bundle = [NSBundle bundleForClass:[self class]];
NSString *path = [bundle pathForResource:@"foo" ofType:@"txt"];
次に、コードはユニットテストクラスが含まれているバンドルを検索し、すべて正常に動作します。
self
では、テストケースクラスではなく、メインバンドルのクラスを参照していると想定しています。[self class]
メインバンドルの任意のクラスに置き換えます。私の例を編集します。
bundleForClass:
のクラスで使用する必要があります。ユニットテストコードでファイルのパスを取得し、パス文字列を他のコードに渡す必要があります。
Swift実装:
スウィフト2
let testBundle = NSBundle(forClass: self.dynamicType)
let fileURL = testBundle.URLForResource("imageName", withExtension: "png")
XCTAssertNotNil(fileURL)
Swift 3、Swift 4
let testBundle = Bundle(for: type(of: self))
let filePath = testBundle.path(forResource: "imageName", ofType: "png")
XCTAssertNotNil(filePath)
バンドルは、構成のメインパスとテストパスを検出する方法を提供します。
@testable import Example
class ExampleTests: XCTestCase {
func testExample() {
let bundleMain = Bundle.main
let bundleDoingTest = Bundle(for: type(of: self ))
let bundleBeingTested = Bundle(identifier: "com.example.Example")!
print("bundleMain.bundlePath : \(bundleMain.bundlePath)")
// …/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Xcode/Agents
print("bundleDoingTest.bundlePath : \(bundleDoingTest.bundlePath)")
// …/PATH/TO/Debug/ExampleTests.xctest
print("bundleBeingTested.bundlePath : \(bundleBeingTested.bundlePath)")
// …/PATH/TO/Debug/Example.app
print("bundleMain = " + bundleMain.description) // Xcode Test Agent
print("bundleDoingTest = " + bundleDoingTest.description) // Test Case Bundle
print("bundleUnderTest = " + bundleBeingTested.description) // App Bundle
Xcode 6 | 7 | 8 | 9では、単体テストバンドルパスはDeveloper/Xcode/DerivedData
次のようになります...
/Users/
UserName/
Library/
Developer/
Xcode/
DerivedData/
App-qwertyuiop.../
Build/
Products/
Debug-iphonesimulator/
AppTests.xctest/
foo.txt
... Developer/CoreSimulator/Devices
通常の(単体テストではない)バンドルパスとは別です:
/Users/
UserName/
Library/
Developer/
CoreSimulator/
Devices/
_UUID_/
data/
Containers/
Bundle/
Application/
_UUID_/
App.app/
また、単体テストの実行可能ファイルは、デフォルトでアプリケーションコードにリンクされています。ただし、単体テストコードでは、テストバンドル内にのみターゲットメンバーシップを含める必要があります。アプリケーションコードでは、アプリケーションバンドルにターゲットメンバーシップのみを含める必要があります。実行時に、単体テストターゲットバンドルがアプリケーションバンドルに挿入されて実行されます。ます。
Swift Package Manager(SPM)4:
let testBundle = Bundle(for: type(of: self))
print("testBundle.bundlePath = \(testBundle.bundlePath) ")
注:デフォルトでは、コマンドラインswift test
はMyProjectPackageTests.xctest
テストバンドルを作成します。そして、テストバンドルswift package generate-xcodeproj
が作成されますMyProjectTests.xctest
。これらの異なるテストバンドルには異なるパスがあります。また、さまざまなテストバンドルには、内部ディレクトリ構造とコンテンツの違いがある場合があります。
どちらの場合でも、 .bundlePath
と.bundleURL
は現在macOSで実行されているテストバンドルのパスを返します。ただし、Bundle
Ubuntu Linuxでは現在実装されていません。
また、コマンドラインswift build
にswift test
は現在、リソースをコピーするためのメカニズムがありません。
ただし、多少の努力を払えば、macOS Xcode、macOSコマンドライン、Ubuntuコマンドライン環境のリソースでSwift Package Mangerを使用するためのプロセスを設定することが可能です。一例はここにあります: 004.4'2 SW Dev Swift Package Manager(SPM)With Resources Qref
以下も参照してください。 Swift Package Managerを使用した単体テストでのリソースの使用
Swift Package Manager(SPM)4.2
Swift Package Manager PackageDescription 4.2では、ローカル依存関係のサポートが導入されています。
ローカル依存関係は、パスを使用して直接参照できるディスク上のパッケージです。ローカルの依存関係はルートパッケージでのみ許可され、パッケージグラフ内の同じ名前のすべての依存関係をオーバーライドします。
注:SPM 4.2では次のようなことが可能になるはずですが、まだテストしていません。
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "MyPackageTestResources",
dependencies: [
.package(path: "../test-resources"),
],
targets: [
// ...
.testTarget(
name: "MyPackageTests",
dependencies: ["MyPackage", "MyPackageTestResources"]
),
]
)