https://github.com/sulmar/vavatech-bsb-dotnet-core-ttd
Przykłady ze szkolenia Testy jednostkowe w .NET Core
https://github.com/sulmar/vavatech-bsb-dotnet-core-ttd
netcore tdd testing
Last synced: 2 months ago
JSON representation
Przykłady ze szkolenia Testy jednostkowe w .NET Core
- Host: GitHub
- URL: https://github.com/sulmar/vavatech-bsb-dotnet-core-ttd
- Owner: sulmar
- Created: 2022-05-31T15:44:23.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-23T15:24:05.000Z (almost 4 years ago)
- Last Synced: 2025-01-02T03:33:20.784Z (over 1 year ago)
- Topics: netcore, tdd, testing
- Language: C#
- Homepage:
- Size: 252 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Frameworki
| MSTest v2.x. | xUnit.net 2.x | NUnit 3.x | Comments |
| -------------------- | ------------------------- | -------------------- | -------------------------------------------------- |
| \[TestMethod\] | \[Fact\] | \[Test\] | Marks a test method. |
| \[TestClass\] | n/a | \[TestFixture\] | Marks a test class. |
| \[TestInitialize\] | Constructor | `[SetUp]` | Triggered before every test case. |
| \[TestCleanup\] | IDisposable.Dispose | \[TearDown\] | Triggered after every test case. |
| \[ClassInitialize\] | IClassFixture | \[OneTimeSetUp\] | One-time triggered method before test cases start. |
| \[ClassCleanup\] | IClassFixture | \[OneTimeTearDown\] | One-time triggered method after test cases end. |
| \[Ignore\] | \[Fact(Skip="reason")\] | \[Ignore("reason")\] | Ignores a test case. |
| \[TestProperty\] | \[Trait\] | \[Property\] | Sets arbitrary metadata on a test. |
| \[DataRow\] | \[Theory\] | \[Theory\] | Configures a data-driven test. |
| \[TestCategory("")\] | \[Trait("Category", "")\] | \[Category("")\] | Categorizes the test cases or classes. |
## Testy mutacyjne
https://stryker-mutator.io/docs/stryker-net/Getting-started