我想用相关的测试用例 ID 标记每个银杏测试“何时”块。有没有办法实现它?
Describe("Shopping cart", func() {
When("initially", func() { // Need to add test_tag here
It("has 0 items", func() {})
})
})
我想用相关的测试用例 ID 标记每个银杏测试“何时”块。有没有办法实现它?
Describe("Shopping cart", func() {
When("initially", func() { // Need to add test_tag here
It("has 0 items", func() {})
})
})