An error occurred while loading the file. Please try again.
Select Git revision
-
Md. Alim Ul Karim authoredMd. Alim Ul Karim authored
GherkinsString.go 313 B
package errcore
import (
"fmt"
"gitlab.com/evatix-go/core/internal/msgformats"
)
func GherkinsString(
testCaseIndex int,
feature,
given,
when,
then interface{},
) string {
return fmt.Sprintf(
msgformats.SimpleGherkinsFormat,
testCaseIndex,
feature,
testCaseIndex,
given,
when,
then,
)
}