You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func TestIntegerStuff(t *testing.T) {
Convey("Given some integer with a starting value", t, func() {
x := 1
//CAN I GET "Given some integer with a starting value" HERE???
Convey("When the integer is incremented", func() {
x++
//CAN I GET "When the integer is incremented" HERE???
Convey("The value should be greater by one", func() {
//CAN I GET "The value should be greater by one" HERE???
So(x, ShouldEqual, 2)
})
})
})
}
as comment in the above code, can i get case name in Convey
i've tried func(c C), still can't find the way
The text was updated successfully, but these errors were encountered:
as comment in the above code, can i get case name in Convey
i've tried func(c C), still can't find the way
The text was updated successfully, but these errors were encountered: