https://github.com/cihatsolak/netcore-unit-test
It is the process where we test the behavior of the smallest units of the project independently. Our action methods in the controller are actually small components, and we can observe their behavior with unit test. The sensitive point is the state of being independent from each other. When testing a method, the method to be tested should not relate to different methods.
https://github.com/cihatsolak/netcore-unit-test
autofixture efcore fluentassertions localdb moq-framework sqlite xunit-tests
Last synced: about 1 month ago
JSON representation
It is the process where we test the behavior of the smallest units of the project independently. Our action methods in the controller are actually small components, and we can observe their behavior with unit test. The sensitive point is the state of being independent from each other. When testing a method, the method to be tested should not relate to different methods.
- Host: GitHub
- URL: https://github.com/cihatsolak/netcore-unit-test
- Owner: cihatsolak
- License: mit
- Created: 2021-05-07T09:43:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-07-25T19:22:36.000Z (almost 4 years ago)
- Last Synced: 2025-12-14T12:22:14.578Z (6 months ago)
- Topics: autofixture, efcore, fluentassertions, localdb, moq-framework, sqlite, xunit-tests
- Language: C#
- Homepage: https://cihatsolak.medium.com/
- Size: 723 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NET CORE - UNIT TEST

It is the process where we test the behavior of the smallest units of the project independently. Our action methods in the controller are actually small components, and we can observe their behavior with unit test. The sensitive point is the state of being independent from each other. When testing a method, the method to be tested should not relate to different methods.
## Libraries

#### Installed Packages (UnitTest.Web)
* Microsoft.VisualStudio.Web.CodeGeneration.Design
* Microsoft.EntityFrameworkCore.Tools
* Microsoft.EntityFrameworkCore.SqlServer
* Microsoft.EntityFrameworkCore
#### Installed Packages (UnitTest.Web.Test)
* xunit.runner.visualstudio
* xunit
* Moq
* Microsoft.NET.Test.Sdk
* Microsoft.EntityFrameworkCore.Sqlite
#### Installed Packages (XUnitTest.App)
* No packages found
#### Installed Packages (XUnitTest.Test)
* xunit.runner.visualstudio
* xunit
* Moq
* Microsoft.NET.Test.Sdk
* Microsoft.EntityFrameworkCore.Sqlite
#### Contact Addresses
##### Linkedin: [Send a message on Linkedin](https://www.linkedin.com/in/cihatsolak/)
##### Twitter: [Go to @cihattsolak](https://twitter.com/cihattsolak)
##### Medium: [Read from medium](https://cihatsolak.medium.com/)