MCPcopy
hub / github.com/IBM/sarama / newMockBroker

Function newMockBroker

admin_test.go:2129–2134  ·  view source on GitHub ↗

newMockBroker spins up a MockBroker with auto-cleanup.

(t *testing.T, id int32)

Source from the content-addressed store, hash-verified

2127
2128// newMockBroker spins up a MockBroker with auto-cleanup.
2129func newMockBroker(t *testing.T, id int32) *MockBroker {
2130 t.Helper()
2131 b := NewMockBroker(t, id)
2132 t.Cleanup(func() { b.Close() })
2133 return b
2134}
2135
2136// newTestAdmin builds a V2.1 ClusterAdmin against the given seed broker with
2137// retry backoff disabled and auto-cleanup.

Callers 4

TestListOffsetsFunction · 0.85

Calls 4

CloseMethod · 0.95
NewMockBrokerFunction · 0.85
HelperMethod · 0.80
CleanupMethod · 0.65

Tested by

no test coverage detected