Skip to content

Commit e90bbf9

Browse files
Add missing annotations
1 parent a7839df commit e90bbf9

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/Framework/TestCase.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,8 @@ protected function tearDown(): void
343343
* Returns a string representation of the test case.
344344
*
345345
* @throws Exception
346+
*
347+
* @internal This method is not covered by the backward compatibility promise for PHPUnit
346348
*/
347349
public function toString(): string
348350
{
@@ -355,6 +357,9 @@ public function toString(): string
355357
return $buffer . $this->dataSetAsStringWithData();
356358
}
357359

360+
/**
361+
* @internal This method is not covered by the backward compatibility promise for PHPUnit
362+
*/
358363
final public function count(): int
359364
{
360365
return 1;
@@ -417,6 +422,9 @@ final public function expectNotToPerformAssertions(): void
417422
$this->doesNotPerformAssertions = true;
418423
}
419424

425+
/**
426+
* @internal This method is not covered by the backward compatibility promise for PHPUnit
427+
*/
420428
final public function status(): TestStatus
421429
{
422430
return $this->status;

0 commit comments

Comments
 (0)