https://github.com/jayesh-tanna/unittest-mocking
Mocking practices using Moq in Microsoft unit test framework
https://github.com/jayesh-tanna/unittest-mocking
c-sharp moq test-framework unittests
Last synced: 13 days ago
JSON representation
Mocking practices using Moq in Microsoft unit test framework
- Host: GitHub
- URL: https://github.com/jayesh-tanna/unittest-mocking
- Owner: jayesh-tanna
- Created: 2019-05-29T06:31:27.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-03T08:38:53.000Z (about 7 years ago)
- Last Synced: 2025-03-04T05:41:35.325Z (over 1 year ago)
- Topics: c-sharp, moq, test-framework, unittests
- Language: C#
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# unittest-mocking
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.