client.go 217 B

12345678910111213
  1. // +build integration
  2. //Package performance provides gucumber integration tests support.
  3. package performance
  4. import (
  5. "github.com/gucumber/gucumber"
  6. )
  7. func init() {
  8. gucumber.Before("@performance", func() {
  9. })
  10. }