@@ -64,6 +64,7 @@ public function testGetItem(): void
64
64
65
65
$ this ->assertCount (2 , $ spans );
66
66
$ this ->assertSame ('cache.get_item ' , $ spans [1 ]->getOp ());
67
+ $ this ->assertSame ('foo ' , $ spans [1 ]->getDescription ());
67
68
$ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
68
69
}
69
70
@@ -119,6 +120,7 @@ public function testClear(): void
119
120
120
121
$ this ->assertCount (2 , $ spans );
121
122
$ this ->assertSame ('cache.clear ' , $ spans [1 ]->getOp ());
123
+ $ this ->assertSame ('foo ' , $ spans [1 ]->getDescription ());
122
124
$ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
123
125
}
124
126
@@ -148,6 +150,7 @@ public function testGet(): void
148
150
149
151
$ this ->assertCount (2 , $ spans );
150
152
$ this ->assertSame ('cache.get_item ' , $ spans [1 ]->getOp ());
153
+ $ this ->assertSame ('foo ' , $ spans [1 ]->getDescription ());
151
154
$ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
152
155
}
153
156
@@ -185,6 +188,7 @@ public function testDelete(): void
185
188
186
189
$ this ->assertCount (2 , $ spans );
187
190
$ this ->assertSame ('cache.delete_item ' , $ spans [1 ]->getOp ());
191
+ $ this ->assertSame ('foo ' , $ spans [1 ]->getDescription ());
188
192
$ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
189
193
}
190
194
@@ -222,6 +226,7 @@ public function testHasItem(): void
222
226
223
227
$ this ->assertCount (2 , $ spans );
224
228
$ this ->assertSame ('cache.has_item ' , $ spans [1 ]->getOp ());
229
+ $ this ->assertSame ('foo ' , $ spans [1 ]->getDescription ());
225
230
$ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
226
231
}
227
232
@@ -249,6 +254,7 @@ public function testDeleteItem(): void
249
254
250
255
$ this ->assertCount (2 , $ spans );
251
256
$ this ->assertSame ('cache.delete_item ' , $ spans [1 ]->getOp ());
257
+ $ this ->assertSame ('foo ' , $ spans [1 ]->getDescription ());
252
258
$ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
253
259
}
254
260
0 commit comments