Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 9 days 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 (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-25T19:22:36.000Z (over 2 years ago)
- Last Synced: 2024-12-23T01:50:04.142Z (13 days 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
![unit-test-nedir](https://user-images.githubusercontent.com/54249736/118054949-e0e91900-b38f-11eb-9763-d99ef70ab315.png)
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
![Screenshot_1](https://user-images.githubusercontent.com/54249736/118055021-feb67e00-b38f-11eb-8730-0c761945de40.png)#### 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/)