如何使用ginkgo在多个测试文件中编写测试用例?
a_suite_test.go文件:
func TestA(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "A Suite")
}
a_test.go:
var _ = Describe("A", func() {
Context("A", func() {
It("A", func() {
Expect(1).To(Equal(1))
})
})
})
我运行ginkgo
,但错误被抛出:
Failed to compile A:
go build xxx: no non-test Go files in xxx
我可以在其他测试文件中编写测试用例而不是在套件测试文件中编写吗?
答案 0 :(得分:0)
运行
go test ./...
从项目的根目录开始,它将运行所有测试。使用ginkgo你需要这个套件文件,但是go test命令会抓住并运行它。