mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
the major purpose of this PR is to update modules to their recent **minor version**. this is helpful in terms of having update functionalities and fixing some issues caused by non-up-to-date modules.
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:
- Consumer, which will create PartitionConsumer mocks.
- AsyncProducer
- SyncProducer
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.