Skip to content

Commit

Permalink
More README tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sdcondon committed Oct 25, 2021
1 parent 2df8212 commit 74c07f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ Create a (.NET 5) class library and add some package references:
- `Microsoft.NET.Test.Sdk` - to identify this as a test project
- `FlUnit` - which contains the important stuff - the builder and test classes
- `FlUnit.Adapters.VSTest` - the VSTest adapter package, so that the VSTest platform knows how to find and run FlUnit tests.
- You'll also need to include an assertion library of your choice - the example code below uses `Shouldly`, for example.
- You'll also need to include an assertion library of your choice - the example code below uses [`Shouldly`](https://shouldly.io/), for example.
- [`coverlet.collector`](https://github.com/coverlet-coverage/coverlet) does work with FlUnit tests - so feel free to add that, too.

As shown below, tests are defined as public static gettable properties of public static classes, with the help of a fluent builder to construct them. More examples can be found in the [example test project](./src/Example.TestProject/ExampleTests.cs).

Expand Down

0 comments on commit 74c07f0

Please sign in to comment.