mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-05 17:27:51 +00:00
This switches over to ginkgo/gomega for tests, which makes writing certain tests easier/more fluent in the future.
15 lines
450 B
Go
15 lines
450 B
Go
package reporters
|
|
|
|
import (
|
|
"github.com/onsi/ginkgo/config"
|
|
"github.com/onsi/ginkgo/types"
|
|
)
|
|
|
|
type Reporter interface {
|
|
SpecSuiteWillBegin(config config.GinkgoConfigType, summary *types.SuiteSummary)
|
|
BeforeSuiteDidRun(setupSummary *types.SetupSummary)
|
|
SpecWillRun(specSummary *types.SpecSummary)
|
|
SpecDidComplete(specSummary *types.SpecSummary)
|
|
AfterSuiteDidRun(setupSummary *types.SetupSummary)
|
|
SpecSuiteDidEnd(summary *types.SuiteSummary)
|
|
}
|