5

我将 Swift 与 Typhoon 和 Cocoapods 一起使用。在我开始为我的 Typhoon 组件编写集成测试(根据Typhoon-Example-App Test )之前,一切都运行良好。我想以 与TyphoonFactory在. 当我执行测试时,我总是得到一个setUp()AppDelegate

TyphoonBlockComponentFactory assertIsAssembly:] + 244: 错误: MyApp.MyAssembly 不是 TyphoonAssembly 的子类

Typhoon 引发的错误(它正在使用kindOfClass引擎盖下的方法。)相同的代码在其中完美运行AppDelegate,我无法弄清楚出了什么问题。

为了验证这种行为,我isKindOfClass在展位类中实现了检查(参见下面的代码):

  • AppDelegate ->
  • 我的组件测试->

有人可以进一步帮助我吗?多谢!

播客文件

inhibit_all_warnings!

target "MyApp" do
pod 'Typhoon', '2.1.0'
end

target "MyAppTests" do
pod 'Typhoon', '2.1.0'
end

MyAssembly.swift

public class MyAssembly : TyphoonAssembly{
    //Some definitions
}

AppDelegate.swift

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
    …
    var assembly : MyAssembly = MyAssembly()
    //Always returns „true“
    println("Is type of class: \(assembly.isKindOfClass(TyphoonAssembly))")
    …
}

MyComponentTest.swift

import XCTest
import MyApp

class MyComponentTest: XCTestCase {

    override func setUp() {
        super.setup()
        var assembly : MyAssembly = MyAssembly()
        //Always returns „false“!
        println("Is type of class: \(assembly.isKindOfClass(TyphoonAssembly))")

        //Error is thrown „MyApp.MyAssembly is not a sub-class of TyphoonAssembly“
        var factory : TyphoonComponentFactory = TyphoonBlockComponentFactory(assembly: assembly) as TyphoonComponentFactory
    }
}
4

1 回答 1

7

为了其他用户的利益:

正如在Typhoon 的 Github上所讨论的那样,当 Typhoon CocoaPod 包含在应用程序目标和测试目标中时会发生此错误。

由于应用程序风格的测试(设置了 TEST_HOST 标志)现在几乎无处不在,测试目标自动从主应用程序目标继承依赖关系。在 Swift 的情况下,使用名称间距,如果它们在测试目标中重复,事情可能会中断。

因此,解决方案是从测试目标中删除 Typhoon 和任何其他应用程序的依赖项,因为这些是继承的。您仍然可以包含特定于测试的依赖项,如下所示:

target :tests, :exclusive => true do
   pod 'OCMockito'
   pod 'AnotherTestLibrary' #etc . . 
end
于 2014-08-20T11:58:53.963 回答