Пример #1
0
	. "github.com/cloudfoundry/bosh-utils/internal/github.com/onsi/ginkgo/internal/remote"
	st "github.com/cloudfoundry/bosh-utils/internal/github.com/onsi/ginkgo/reporters/stenographer"
	"github.com/cloudfoundry/bosh-utils/internal/github.com/onsi/ginkgo/types"
	"time"
)

var _ = Describe("Aggregator", func() {
	var (
		aggregator     *Aggregator
		reporterConfig config.DefaultReporterConfigType
		stenographer   *st.FakeStenographer
		result         chan bool

		ginkgoConfig1 config.GinkgoConfigType
		ginkgoConfig2 config.GinkgoConfigType

		suiteSummary1 *types.SuiteSummary
		suiteSummary2 *types.SuiteSummary

		beforeSummary *types.SetupSummary
		afterSummary  *types.SetupSummary
		specSummary   *types.SpecSummary

		suiteDescription string
	)

	BeforeEach(func() {
		reporterConfig = config.DefaultReporterConfigType{
			NoColor:           false,
			SlowSpecThreshold: 0.1,
			NoisyPendings:     true,
			Succinct:          false,
Пример #2
0
	"time"

	. "github.com/cloudfoundry/bosh-utils/internal/github.com/onsi/ginkgo"
	"github.com/cloudfoundry/bosh-utils/internal/github.com/onsi/ginkgo/config"
	"github.com/cloudfoundry/bosh-utils/internal/github.com/onsi/ginkgo/reporters"
	st "github.com/cloudfoundry/bosh-utils/internal/github.com/onsi/ginkgo/reporters/stenographer"
	"github.com/cloudfoundry/bosh-utils/internal/github.com/onsi/ginkgo/types"
	. "github.com/cloudfoundry/bosh-utils/internal/github.com/onsi/gomega"
)

var _ = Describe("DefaultReporter", func() {
	var (
		reporter       *reporters.DefaultReporter
		reporterConfig config.DefaultReporterConfigType
		stenographer   *st.FakeStenographer

		ginkgoConfig config.GinkgoConfigType
		suite        *types.SuiteSummary
		spec         *types.SpecSummary
	)

	BeforeEach(func() {
		stenographer = st.NewFakeStenographer()
		reporterConfig = config.DefaultReporterConfigType{
			NoColor:           false,
			SlowSpecThreshold: 0.1,
			NoisyPendings:     false,
			Verbose:           true,
			FullTrace:         true,
		}