-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tests: More unit tests #310
Comments
https://plugins.jetbrains.com/plugin/20747-unittestbot-net could really help with this !
Sadly my version of Rider is too new ATM. |
Also related: unit test for the CPU for all instructions beyond the 8086: |
For Code QA, maybe look into Jetbrains Qodana (github action) instead of GitHub's Code QL. Also, once the coverage is good enough: https://github.com/simon-k/dotnet-code-coverage-badge |
For integration tests, this may be worth it someday: https://github.com/LightBDD/LightBDD instead of SpecFlow.NET (which is slow) |
For filesystem dependent parts: https://github.com/TestableIO/System.IO.Abstractions |
A lot of new code is not covered by unit tests. While it works since it's tested by try to make games run, it's harder without tests to detect regressions.
Also:
https://stryker-mutator.io/docs/stryker-net/introduction/
"Stryker.NET offers you mutation testing for your .NET Core and .NET Framework projects. It allows you to test your tests by temporarily inserting bugs. Stryker.NET is installed using NuGet."
This package could help a lot to ensure new unit tests are sharp enough.
The text was updated successfully, but these errors were encountered: