From eb27b8e3ef8c5ac00669bb90002d2670b656d79a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Breu=C3=9F?= Date: Tue, 24 Feb 2026 19:38:01 +0100 Subject: [PATCH] docs: add `Stopwatch` to README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 65d62b3b..78bc065d 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ As the test suite runs both against the mocked and the real file system, the beh In addition, the following interfaces are defined: - The `ITimeSystem` interface abstracts away time-related functionality: - `DateTime` methods give access to the current time + - `Stopwatch` is a wrapper around [`System.Diagnostics.Stopwatch`](https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.stopwatch) - `Task` allows replacing [`Task.Delay`](https://learn.microsoft.com/en-us/dotnet/api/system.threading.tasks.task.delay) - `Thread` allows replacing [`Thread.Sleep`](https://learn.microsoft.com/en-us/dotnet/api/system.threading.thread.sleep) - `Timer` is a wrapper around [`System.Threading.Timer`](https://learn.microsoft.com/en-us/dotnet/api/system.threading.timer)