TerevintoSoftware.SolidTester.Tool
1.2.0
dotnet tool install --global TerevintoSoftware.SolidTester.Tool --version 1.2.0
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local TerevintoSoftware.SolidTester.Tool --version 1.2.0
#tool dotnet:?package=TerevintoSoftware.SolidTester.Tool&version=1.2.0
nuke :add-package TerevintoSoftware.SolidTester.Tool --version 1.2.0
TerevintoSoftware.SolidTester
This project aims to provide a way for c# developers to quickly create Unit Tests for an entire project at once.
This is meant to help people that have a solution without any tests to quickly get up and running, avoiding hours of writing repetitive boilerplate code.
This currently supports only NUnit (v3) and Moq mocks, and it was tested with fairly simple/common scenarios (see the SampleLibrary folder).
Packages
This project is divided in two packages:
Package | Purpose |
---|---|
TerevintoSoftware.SolidTester | Contains the main logic of the project. |
TerevintoSoftware.SolidTester.Tool | Contains a .NET Tool that can be invoked to perform the generation. |
Sample usage
- Install the tool:
dotnet tool install TerevintoSoftware.SolidTester.Tool
- (optional) See the available options with
solid-tester -h
- Run the static site generation:
solid-tester --assembly "path-to-assembly" --output "path-to-output" --base-namespace YourLibrary.Tests
How to build
- Install Visual Studio 2022 (.NET 6 required), if needed.
- Install git, if needed.
- Clone this repository.
- Build from Visual Studio or through
dotnet build
.
Running tests
Once the solution is compiled, tests can be run either from Visual Studio's Test Explorer window, or through dotnet test
.
License
The .NET Tool and this solution are licensed under the MIT license.
Bug reports and feature requests
Please use the issue tracker and ensure your question/feedback was not previously reported.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
This package has no dependencies.
[1.2.0] First usable release.