Projem için Birim Testi kurmaya çalışıyorum. Yakın zamanda bir Swift sınıfı eklediğim mevcut bir Objective-C uygulaması. 'MyProject-Swift.h' ve Swift Bridging dosyalarını (hem 'MyProject' hem de 'MyProjectTest') kurdum ve hem Objective-C hem de Swift kodunu kullanarak uygulamayı çok iyi bir şekilde oluşturabilir ve çalıştırabilirim.
Ancak, şimdi yeni Swift sınıfında bazı Birim Testleri çalıştırmak istiyorum. Test dosyamı kurdum ve aşağıdaki gibi görünüyor:
MySwiftClassTests.swift:
import UIKit
import XCTest
import MyProject
class MySwiftClassTests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
}
override func tearDown() {
// Put teardown code here. This method is called after the invocation of each test method in the class.
super.tearDown()
}
func testExample() {
// This is an example of a functional test case.
XCTAssert(true, "Pass")
}
func testPerformanceExample() {
// This is an example of a performance test case.
self.measureBlock() {
// Put the code you want to measure the time of here.
}
}
}
Uygulamayı Test olarak çalıştırırken bu hatayı alıyorum:
'MyProject-Swift.h' file not found
Bunun neden sadece Testleri çalıştırmaya çalışırken gerçekleştiğinden emin değilim. Herhangi bir öneri?