コード例 #1
0
ファイル: aggregator_test.go プロジェクト: spekode/odin
	. "github.com/jwaldrip/odin/Godeps/_workspace/src/github.com/onsi/ginkgo/internal/remote"
	st "github.com/jwaldrip/odin/Godeps/_workspace/src/github.com/onsi/ginkgo/reporters/stenographer"
	"github.com/jwaldrip/odin/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,
コード例 #2
0
ファイル: default_reporter_test.go プロジェクト: spekode/odin
import (
	. "github.com/jwaldrip/odin/Godeps/_workspace/src/github.com/onsi/ginkgo"
	"github.com/jwaldrip/odin/Godeps/_workspace/src/github.com/onsi/ginkgo/config"
	"github.com/jwaldrip/odin/Godeps/_workspace/src/github.com/onsi/ginkgo/reporters"
	st "github.com/jwaldrip/odin/Godeps/_workspace/src/github.com/onsi/ginkgo/reporters/stenographer"
	"github.com/jwaldrip/odin/Godeps/_workspace/src/github.com/onsi/ginkgo/types"
	. "github.com/jwaldrip/odin/Godeps/_workspace/src/github.com/onsi/gomega"
	"time"
)

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:     true,
			Verbose:           true,
			FullTrace:         true,
		}