如何使用银杏在多个测试文件中编写测试用例?
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
我可以在其他测试文件中编写测试用例而不是在套件测试文件中编写吗?