File tree 3 files changed +23
-3
lines changed
3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ class ServerTiming
21
21
public function __construct (Stopwatch $ stopwatch )
22
22
{
23
23
$ this ->stopwatch = $ stopwatch ;
24
+ $ this ->reset ();
24
25
}
25
26
26
27
public function addMetric (string $ metric ): self
@@ -104,11 +105,11 @@ public function events(): array
104
105
return $ this ->finishedEvents ;
105
106
}
106
107
107
- public function reset (Stopwatch $ stopwatch ): void
108
+ public function reset (): void
108
109
{
109
110
$ this ->finishedEvents = [];
110
111
$ this ->startedEvents = [];
111
- $ this ->stopwatch = $ stopwatch ;
112
+ $ this ->stopwatch -> reset () ;
112
113
}
113
114
114
115
}
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ protected function resetServerTiming(): void
43
43
* @var ServerTiming $serverTiming
44
44
*/
45
45
$ serverTiming = $ this ->app ->get (ServerTiming::class);
46
- $ serverTiming ->reset (new \ Symfony \ Component \ Stopwatch \ Stopwatch () );
46
+ $ serverTiming ->reset ();
47
47
}
48
48
49
49
protected function setupOctane (): void
Original file line number Diff line number Diff line change @@ -36,6 +36,25 @@ public function it_can_start_and_stop_events(): void
36
36
$ this ->assertGreaterThanOrEqual (1000 , $ events ['key ' ]);
37
37
}
38
38
39
+ /** @test */
40
+ public function it_can_be_resetted (): void
41
+ {
42
+ $ timing = new ServerTiming (new Stopwatch ());
43
+ $ timing ->start ('key ' );
44
+ sleep (1 );
45
+ $ timing ->stop ('key ' );
46
+
47
+ $ events = $ timing ->events ();
48
+
49
+ $ this ->assertCount (1 , $ events );
50
+ $ this ->assertTrue (array_key_exists ('key ' , $ events ));
51
+ $ this ->assertGreaterThanOrEqual (1000 , $ events ['key ' ]);
52
+
53
+ $ timing ->reset ();
54
+
55
+ $ this ->assertCount (0 , $ timing ->events ());
56
+ }
57
+
39
58
/** @test */
40
59
public function it_can_start_and_stop_events_using_measure (): void
41
60
{
You can’t perform that action at this time.
0 commit comments