Skip to content

Commit

Permalink
Updated README for 1.3.0 release.
Browse files Browse the repository at this point in the history
Also updated roadmap.
  • Loading branch information
sdcondon committed Apr 16, 2024
1 parent db14241 commit 1b4c364
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![NuGet version (FlUnit)](https://img.shields.io/nuget/v/FlUnit.svg?style=flat-square)](https://www.nuget.org/packages/FlUnit/)
[![NuGet downloads (FlUnit)](https://img.shields.io/nuget/dt/FlUnit.svg?style=flat-square)](https://www.nuget.org/packages/FlUnit/)
[![Commits since latest release](https://img.shields.io/github/commits-since/sdcondon/FlUnit/latest?style=flat-square)](https://github.com/sdcondon/FlUnit/compare/1.2.0...main)
[![Commits since latest release](https://img.shields.io/github/commits-since/sdcondon/FlUnit/latest?style=flat-square)](https://github.com/sdcondon/FlUnit/compare/1.3.0...main)

This repo contains the source code for the FlUnit NuGet package - as well as its tests, documentation website, and an example test project.

Expand Down
8 changes: 1 addition & 7 deletions src/FlUnit.Documentation/wwwroot/md/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,10 @@ Proper issue tracking would be overkill, so just a bullet list to organise my th

Next up:

- Support for async tests:
- First and foremost, need to allow async then clauses - assertion delegates should be allowed to return Tasks,
test execution should await them appropriately.
- Currently, there's nothing stopping "Given" and "When" clauses from returning tasks - but it might be nice to
allow the framework to await them so that the following logic doesn't *have* to do so itself (thus potentially
simplifying test logic). `WhenAwait`? `GivenAwait`/`GivenEachOfAwait`?
- Fix VSTest adapter so that the test assembly is loaded in a reflection-only context when discovering tests.

On the to-do list for soon-ish:

- Fix VSTest adapter so that the test assembly is loaded in a reflection-only context when discovering tests.
- Allow for instantiable test fixtures rather than just static test properties, with an abstract
factory to allow for extensions that hook into various DI frameworks (and some mechanism for initialisationof the DI container).
- Basic test tidy-up support. Open questions here about if/when we should consider objects (prerequisites,
Expand Down

0 comments on commit 1b4c364

Please sign in to comment.