File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
tests/unit/Event/Value/Telemetry Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,34 @@ public function testMayNotHaveExtendedInformation(): void
88
88
$ this ->assertFalse ($ this ->withoutDetails ()->hasExtendedInformation ());
89
89
}
90
90
91
+ public function testMayNotHaveApplicationTime (): void
92
+ {
93
+ $ this ->expectException (RuntimeException::class);
94
+
95
+ $ this ->withoutDetails ()->applicationTime ();
96
+ }
97
+
98
+ public function testMayNotHaveCollectorTime (): void
99
+ {
100
+ $ this ->expectException (RuntimeException::class);
101
+
102
+ $ this ->withoutDetails ()->collectorTime ();
103
+ }
104
+
105
+ public function testMayNotHaveDestructorTime (): void
106
+ {
107
+ $ this ->expectException (RuntimeException::class);
108
+
109
+ $ this ->withoutDetails ()->destructorTime ();
110
+ }
111
+
112
+ public function testMayNotHaveFreeTime (): void
113
+ {
114
+ $ this ->expectException (RuntimeException::class);
115
+
116
+ $ this ->withoutDetails ()->freeTime ();
117
+ }
118
+
91
119
public function testMayNotHaveRunning (): void
92
120
{
93
121
$ this ->expectException (RuntimeException::class);
You can’t perform that action at this time.
0 commit comments