Skip to content

Commit

Permalink
Roadmap correction and copyright year update
Browse files Browse the repository at this point in the history
  • Loading branch information
sdcondon committed Mar 28, 2024
1 parent 374e42e commit d6a03b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2023 Simon Condon
Copyright (c) 2019-2024 Simon Condon

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PackageProjectUrl>https://sdcondon.net/FlUnit</PackageProjectUrl>
<PackageReleaseNotes>See https://github.com/sdcondon/FlUnit/releases.</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>2019-2023 Simon Condon</Copyright>
<Copyright>2019-2024 Simon Condon</Copyright>
<PackageTags>unit test fluent</PackageTags>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand Down
4 changes: 2 additions & 2 deletions src/FlUnit.Documentation/wwwroot/md/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,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,
framework should await them appropriately.
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`)?
simplifying test logic). `WhenAwait`? `GivenAwait`/`GivenEachOfAwait`?

- 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.
Expand Down

0 comments on commit d6a03b1

Please sign in to comment.