Johannes Brüderl baa5962850 fix race condition in mock async producer 5 years ago
..
README.md a9280dbe3f Add README for mocks subpackage 9 years ago
async_producer.go baa5962850 fix race condition in mock async producer 5 years ago
async_producer_test.go 1baff7ce02 Move a method used only in tests into the test file 8 years ago
consumer.go 21e1c0b874 Fix comment for mocks.NewConsumer 7 years ago
consumer_test.go cecb3d9807 Formating all files with gofmt -s 7 years ago
mocks.go 1baff7ce02 Move a method used only in tests into the test file 8 years ago
sync_producer.go c7d4e043bf Proper mock expectations in SyncProducer.SendMessages 6 years ago
sync_producer_test.go e9f0281763 Increase test coverage of SyncProducer 6 years ago

README.md

sarama/mocks

The mocks subpackage includes mock implementations that implement the interfaces of the major sarama types. You can use them to test your sarama applications using dependency injection.

The following mock objects are available:

The mocks allow you to set expectations on them. When you close the mocks, the expectations will be verified, and the results will be reported to the *testing.T object you provided when creating the mock.