From d6a03b1b977846c8992e21cdaafb8a20a51baacb Mon Sep 17 00:00:00 2001 From: Simon Condon Date: Thu, 28 Mar 2024 12:15:32 +0000 Subject: [PATCH] Roadmap correction and copyright year update --- LICENSE.txt | 2 +- src/Directory.Build.props | 2 +- src/FlUnit.Documentation/wwwroot/md/roadmap.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 28a9076..82687da 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -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 diff --git a/src/Directory.Build.props b/src/Directory.Build.props index d8bc4bf..eace3ef 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -8,7 +8,7 @@ https://sdcondon.net/FlUnit See https://github.com/sdcondon/FlUnit/releases. MIT - 2019-2023 Simon Condon + 2019-2024 Simon Condon unit test fluent true snupkg diff --git a/src/FlUnit.Documentation/wwwroot/md/roadmap.md b/src/FlUnit.Documentation/wwwroot/md/roadmap.md index 0202341..fbb3110 100644 --- a/src/FlUnit.Documentation/wwwroot/md/roadmap.md +++ b/src/FlUnit.Documentation/wwwroot/md/roadmap.md @@ -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.