Skip to content

Commit

Permalink
Merge branch '10.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Feb 19, 2023
2 parents 7ca31ef + e90bbf9 commit 37fbd0c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Framework/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,8 @@ protected function tearDown(): void
* Returns a string representation of the test case.
*
* @throws Exception
*
* @internal This method is not covered by the backward compatibility promise for PHPUnit
*/
public function toString(): string
{
Expand All @@ -360,6 +362,9 @@ public function toString(): string
return $buffer . $this->dataSetAsStringWithData();
}

/**
* @internal This method is not covered by the backward compatibility promise for PHPUnit
*/
final public function count(): int
{
return 1;
Expand Down Expand Up @@ -422,6 +427,9 @@ final public function expectNotToPerformAssertions(): void
$this->doesNotPerformAssertions = true;
}

/**
* @internal This method is not covered by the backward compatibility promise for PHPUnit
*/
final public function status(): TestStatus
{
return $this->status;
Expand Down

0 comments on commit 37fbd0c

Please sign in to comment.