@@ -235,20 +235,26 @@ public function __construct(string $name)
235
235
236
236
/**
237
237
* This method is called before the first test of this test class is run.
238
+ *
239
+ * @codeCoverageIgnore
238
240
*/
239
241
public static function setUpBeforeClass (): void
240
242
{
241
243
}
242
244
243
245
/**
244
246
* This method is called after the last test of this test class is run.
247
+ *
248
+ * @codeCoverageIgnore
245
249
*/
246
250
public static function tearDownAfterClass (): void
247
251
{
248
252
}
249
253
250
254
/**
251
255
* This method is called before each test.
256
+ *
257
+ * @codeCoverageIgnore
252
258
*/
253
259
protected function setUp (): void
254
260
{
@@ -258,6 +264,8 @@ protected function setUp(): void
258
264
* Performs assertions shared by all tests of a test case.
259
265
*
260
266
* This method is called between setUp() and test.
267
+ *
268
+ * @codeCoverageIgnore
261
269
*/
262
270
protected function assertPreConditions (): void
263
271
{
@@ -267,13 +275,17 @@ protected function assertPreConditions(): void
267
275
* Performs assertions shared by all tests of a test case.
268
276
*
269
277
* This method is called between test and tearDown().
278
+ *
279
+ * @codeCoverageIgnore
270
280
*/
271
281
protected function assertPostConditions (): void
272
282
{
273
283
}
274
284
275
285
/**
276
286
* This method is called after each test.
287
+ *
288
+ * @codeCoverageIgnore
277
289
*/
278
290
protected function tearDown (): void
279
291
{
@@ -719,6 +731,8 @@ final public function setPreserveGlobalState(bool $preserveGlobalState): void
719
731
720
732
/**
721
733
* @internal This method is not covered by the backward compatibility promise for PHPUnit
734
+ *
735
+ * @codeCoverageIgnore
722
736
*/
723
737
final public function setInIsolation (bool $ inIsolation ): void
724
738
{
@@ -727,14 +741,8 @@ final public function setInIsolation(bool $inIsolation): void
727
741
728
742
/**
729
743
* @internal This method is not covered by the backward compatibility promise for PHPUnit
730
- */
731
- final public function isInIsolation (): bool
732
- {
733
- return $ this ->inIsolation ;
734
- }
735
-
736
- /**
737
- * @internal This method is not covered by the backward compatibility promise for PHPUnit
744
+ *
745
+ * @codeCoverageIgnore
738
746
*/
739
747
final public function result (): mixed
740
748
{
0 commit comments