. "github.com/kellyp/lowprofile/Godeps/_workspace/src/github.com/onsi/ginkgo/internal/remote" st "github.com/kellyp/lowprofile/Godeps/_workspace/src/github.com/onsi/ginkgo/reporters/stenographer" "github.com/kellyp/lowprofile/Godeps/_workspace/src/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,
"time" . "github.com/kellyp/lowprofile/Godeps/_workspace/src/github.com/onsi/ginkgo" "github.com/kellyp/lowprofile/Godeps/_workspace/src/github.com/onsi/ginkgo/config" "github.com/kellyp/lowprofile/Godeps/_workspace/src/github.com/onsi/ginkgo/reporters" st "github.com/kellyp/lowprofile/Godeps/_workspace/src/github.com/onsi/ginkgo/reporters/stenographer" "github.com/kellyp/lowprofile/Godeps/_workspace/src/github.com/onsi/ginkgo/types" . "github.com/kellyp/lowprofile/Godeps/_workspace/src/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, }