Этот коммит содержится в:
Matthew Rothenberg 2017-05-05 11:14:01 -04:00
родитель fd1b376057
коммит fe33ed6e75

Просмотреть файл

@ -14,10 +14,12 @@ import (
"github.com/DATA-DOG/godog/gherkin" "github.com/DATA-DOG/godog/gherkin"
) )
// SuiteContext can be used for meta-testing of godog features/steps themselves. // SuiteContext provides steps for godog suite execution and
// can be used for meta-testing of godog features/steps themselves.
// //
// A typical user of the godog library should never need this, rather it is // Beware, steps or their definitions might change without backward
// provided for those developing add-on libraries for godog. // compatibility guarantees. A typical user of the godog library should never
// need this, rather it is provided for those developing add-on libraries for godog.
// //
// For an example of how to use, see godog's own `features/` and `suite_test.go`. // For an example of how to use, see godog's own `features/` and `suite_test.go`.
func SuiteContext(s *Suite, additionalContextInitializers ...func(suite *Suite)) { func SuiteContext(s *Suite, additionalContextInitializers ...func(suite *Suite)) {