forked from paulmccallick/RabbitMQ.Fakes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding README.md with project information
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# RabbitMQ.Fakes | ||
Fake implementations of the RabbitMQ interfaces for use in testing | ||
|
||
# Requirements | ||
* .NET 4.5 | ||
* Nuget Package Manger | ||
|
||
# Projects | ||
* __RabbitMQ.Fakes:__ Implementation of the fakes | ||
* __RabbitMQ.Fakes.Tests:__ Unit tests around the fake implementation | ||
|
||
# Fakes | ||
* __RabbitServer:__ In memory representation of a Rabbit server. This is where the Exchanges / Queues / Bindings / Messages are held. | ||
* __FakeConnectionFactory:__ Fake implementation of the RabbitMQ ConnectionFactory. Returns a FakeConnection when the .CreateConnection() method is called | ||
* __FakeConnection:__ Fake implementation of the RabbitMQ IConnection. Returns a FakeModel when the .CreateModel() method is called | ||
* __FakeModel:__ Fake implementation of the RabbitMQ IModel. Interacts with the RabbitServer instance passed into the FakeConnectionFactory. | ||
|
||
# Sample Usage | ||
See the UseCases in the RabbitMQ.Fakes.Tests project for sample usage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters