আমি আমার প্রকল্পের জন্য ইউনিট পরীক্ষা করার চেষ্টা করছি। এটি একটি বিদ্যমান অবজেক্টিভ-সি অ্যাপ্লিকেশন, যা আমি সম্প্রতি একটি সুইফ্ট শ্রেণিতে যুক্ত করেছি। আমি 'মাইপ্রজেক্ট-সুইফট। एच' এবং সুইফট ব্রিজিং ফাইল (উভয় 'মাইপ্রজেক্ট' এবং 'মাইপ্রজেক্টেস্ট') সেটআপ করেছি এবং আমি উদ্দেশ্য-সি এবং সুইফট কোড উভয়ই অ্যাপ্লিকেশনটি তৈরি করতে এবং ঠিক চালাতে সক্ষম হয়েছি।
তবে, এখন আমি নতুন সুইফ্ট শ্রেণিতে কিছু ইউনিট টেস্ট চালাতে চাই। আমি আমার পরীক্ষার ফাইলটি সেটআপ করি এবং এটি নীচের মত দেখাচ্ছে:
মাইউইউফটক্লাসটিস্টস.ইউফিট:
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.
}
}
}
টেস্ট হিসাবে অ্যাপটি চালানোর সময় আমি এই ত্রুটিটি পেয়েছি:
'MyProject-Swift.h' file not found
আমি নিশ্চিত নই যে কেন টেস্টগুলি চালানোর চেষ্টা করার সময়ই এটি ঘটে। কোনও পরামর্শ?