PleaseWait 2.3.3
.NET 6.0
.NET Framework 4.8
dotnet add package PleaseWait --version 2.3.3
NuGet\Install-Package PleaseWait -Version 2.3.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PleaseWait" Version="2.3.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PleaseWait --version 2.3.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PleaseWait, 2.3.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PleaseWait as a Cake Addin
#addin nuget:?package=PleaseWait&version=2.3.3
// Install PleaseWait as a Cake Tool
#tool nuget:?package=PleaseWait&version=2.3.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
please-wait
Testing asynchronous systems is not an easy task and is obscured by details such as handling threads, timeouts and concurrency. PleaseWait
is a lightweight DSL that allows you to express the expectations of an asynchronous system in a straightforward manner by waiting for conditions to occur. For example:
using static PleaseWait.Dsl;
using static PleaseWait.TimeUnit;
...
[Test]
public void DemonstratePleaseWait()
{
var orange = new Orange();
_ = orange.PeelFastAsync();
// PleaseWait lets you wait until the asynchronous operation completes:
Wait().AtMost(10, SECONDS).Until(() => orange.IsPeeled);
...
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. 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. |
.NET Framework | net48 is compatible. net481 was computed. |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.8
- No dependencies.
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.3.3 | 233 | 6/20/2023 |
2.3.2 | 93 | 5/26/2023 |
2.3.1 | 80 | 5/26/2023 |
2.3.0 | 86 | 5/25/2023 |
2.2.0 | 82 | 5/25/2023 |
2.1.1 | 95 | 5/23/2023 |
2.1.0 | 84 | 5/23/2023 |
2.0.0 | 85 | 5/19/2023 |
2.0.0-alpha2 | 68 | 5/19/2023 |
2.0.0-alpha | 74 | 5/19/2023 |
1.0.3 | 98 | 5/11/2023 |
1.0.2 | 90 | 5/8/2023 |
1.0.1 | 107 | 5/6/2023 |
1.0.0 | 93 | 5/5/2023 |
1.0.0-alpha2 | 64 | 5/5/2023 |
1.0.0-alpha | 86 | 5/5/2023 |