mirror of
https://github.com/containers/podman.git
synced 2025-12-04 20:28:40 +08:00
* Make sure that all vendored dependencies are in sync with the code and the vendor.conf by running `make vendor` with a follow-up status check of the git tree. * Vendor ginkgo and gomega to include the test dependencies. Signed-off-by: Chris Evic <cevich@redhat.com> Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
16 lines
450 B
Go
16 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)
|
|
}
|