package writer

import "github.com/onsi/ginkgo/internal/writer"

Index

Types

type FakeGinkgoWriter

type FakeGinkgoWriter struct {
	EventStream []string
}

func NewFake

func NewFake() *FakeGinkgoWriter

func (*FakeGinkgoWriter) AddEvent

func (writer *FakeGinkgoWriter) AddEvent(event string)

func (*FakeGinkgoWriter) Bytes

func (writer *FakeGinkgoWriter) Bytes() []byte

func (*FakeGinkgoWriter) DumpOut

func (writer *FakeGinkgoWriter) DumpOut()

func (*FakeGinkgoWriter) DumpOutWithHeader

func (writer *FakeGinkgoWriter) DumpOutWithHeader(header string)

func (*FakeGinkgoWriter) Truncate

func (writer *FakeGinkgoWriter) Truncate()

func (*FakeGinkgoWriter) Write

func (writer *FakeGinkgoWriter) Write(data []byte) (n int, err error)

type Writer

type Writer struct {
	// contains filtered or unexported fields
}

func New

func New(outWriter io.Writer) *Writer

func (*Writer) AndRedirectTo

func (w *Writer) AndRedirectTo(writer io.Writer)

func (*Writer) Bytes

func (w *Writer) Bytes() []byte

func (*Writer) DumpOut

func (w *Writer) DumpOut()

func (*Writer) DumpOutWithHeader

func (w *Writer) DumpOutWithHeader(header string)

func (*Writer) SetStream

func (w *Writer) SetStream(stream bool)

func (*Writer) Truncate

func (w *Writer) Truncate()

func (*Writer) Write

func (w *Writer) Write(b []byte) (n int, err error)

type WriterInterface

type WriterInterface interface {
	io.Writer

	Truncate()
	DumpOut()
	DumpOutWithHeader(header string)
	Bytes() []byte
}

Source Files

fake_writer.go writer.go

Version
v1.16.5 (latest)
Published
Oct 11, 2021
Platform
linux/amd64
Imports
3 packages
Last checked
3 weeks ago

Tools for package owners.