我有单元测试的问题。当我运行测试时,它以"No tests found"
. 我正在使用AppCode
和Quick/Nimble
框架进行单元测试,但它在 XCode 中也不起作用。
我已经XCTest/Kiwi
使用 Target:MyAppTests、Configuration:Development 和 Class:All 测试类运行配置(即使指定了特定的测试类,它也不起作用)。据我所知,没有什么更多的配置。
任何想法我做错了什么?我不确定我应该提供什么其他类型的信息/配置.. 谢谢
编辑:示例单元测试代码
import Quick
import Nimble
@testable import FigurePOS
class DateFormatterTest: QuickSpec
{
override func spec()
{
describe("formatting dates") {
it("should print correct date") {
var c = DateComponents()
c.year = 2016
c.month = 5
c.day = 24
c.hour = 4
c.minute = 33
c.second = 12
let gregorian = NSCalendar(identifier: .gregorian)!
let date = gregorian.date(from: c)!
expect(DateFormatter.formatGmt(date)).to(equal("2016-05-24T04:33:12Z"))
}
}
}
}