11using CSF . Screenplay . Abilities ;
2+ using CSF . Screenplay . Performables ;
23
3- namespace CSF . Screenplay . Performables
4+ namespace CSF . Screenplay
45{
5- /// <summary>
6- /// A builder for actions relating to the <see cref="UseAStopwatch"/> ability.
7- /// </summary>
8- /// <remarks>
9- /// <para>
10- /// When using this class it is recommended to include <c>using static CSF.Screenplay.Performables.StopwatchBuilder;</c>
11- /// in the source file which uses it. This will allow you use the method names in this class in a more human-readable
12- /// fashion.
13- /// </para>
14- /// <para>
15- /// The actions and the question exposed by this builder allow an actor to accurately
16- /// track and measure time elapsed during a Performance.
17- /// </para>
18- /// </remarks>
19- public static class StopwatchBuilder
6+ public static partial class PerforamableBuilder
207 {
218 /// <summary>
229 /// Gets a performable which starts the stopwatch.
2310 /// </summary>
2411 /// <remarks>
2512 /// <para>
26- /// Use of this performable requires the actor has the <see cref="UseAStopwatch"/> ability.
13+ /// Use of this performable requires the actor has the <see cref="UseAStopwatch"/> ability,
14+ /// for accurately measuring time, during the course of a performance.
2715 /// </para>
2816 /// </remarks>
2917 public static StartTheStopwatch StartTheStopwatch ( ) => new StartTheStopwatch ( ) ;
@@ -33,7 +21,8 @@ public static class StopwatchBuilder
3321 /// </summary>
3422 /// <remarks>
3523 /// <para>
36- /// Use of this performable requires the actor has the <see cref="UseAStopwatch"/> ability.
24+ /// Use of this performable requires the actor has the <see cref="UseAStopwatch"/> ability,
25+ /// for accurately measuring time, during the course of a performance.
3726 /// </para>
3827 /// </remarks>
3928 public static StopTheStopwatch StopTheStopwatch ( ) => new StopTheStopwatch ( ) ;
@@ -43,7 +32,8 @@ public static class StopwatchBuilder
4332 /// </summary>
4433 /// <remarks>
4534 /// <para>
46- /// Use of this performable requires the actor has the <see cref="UseAStopwatch"/> ability.
35+ /// Use of this performable requires the actor has the <see cref="UseAStopwatch"/> ability,
36+ /// for accurately measuring time, during the course of a performance.
4737 /// </para>
4838 /// </remarks>
4939 public static ResetTheStopwatch ResetTheStopwatch ( ) => new ResetTheStopwatch ( ) ;
@@ -53,9 +43,10 @@ public static class StopwatchBuilder
5343 /// </summary>
5444 /// <remarks>
5545 /// <para>
56- /// Use of this performable requires the actor has the <see cref="UseAStopwatch"/> ability.
46+ /// Use of this performable requires the actor has the <see cref="UseAStopwatch"/> ability,
47+ /// for accurately measuring time, during the course of a performance.
5748 /// </para>
5849 /// </remarks>
5950 public static ReadTheStopwatch ReadTheStopwatch ( ) => new ReadTheStopwatch ( ) ;
6051 }
61- }
52+ }
0 commit comments