We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 634845e commit a251642Copy full SHA for a251642
1 file changed
CSF.Screenplay/Reporting/ReportTimer.cs
@@ -1,5 +1,8 @@
1
using System;
2
using System.Diagnostics;
3
+
4
+namespace CSF.Screenplay.Reporting
5
+{
6
/// <summary>
7
/// Default implementation of <see cref="IMeasuresTime"/> which uses a <see cref="Stopwatch"/>.
8
/// </summary>
@@ -29,4 +32,5 @@ public TimeSpan GetCurrentTime()
29
32
if(!stopwatch.IsRunning) throw new InvalidOperationException($"The {nameof(GetCurrentTime)} method may not be used before {nameof(BeginTiming)}.");
30
33
return stopwatch.Elapsed;
31
34
}
-}
35
+}
36
0 commit comments