-
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.
- Loading branch information
1 parent
33f20f2
commit b13b370
Showing
1 changed file
with
15 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,2 +1,16 @@ | ||
|
||
# unittest-mocking | ||
Mocking practices using Moq in Microsoft unit test framework | ||
|
||
This solution contains below components. | ||
|
||
Contracts: All entities, enums will be part of this component. | ||
|
||
Repositories: This component contains all Repositories including IRepository interface. All repositories implementing IRepository interface. This component is responsible to connect with Data component. | ||
|
||
Services: This component is responsible to contain all business logic. | ||
|
||
Services.Interfaces: This component contains interfaces related to services. So service can implement respective interface. This can be used for DI. | ||
|
||
Services.UnitTests: This components having all unit tests. This component contains unit tests related to our services. | ||
|
||
|