Skip to content

Commit

Permalink
Drop some @Covers annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Sep 17, 2023
1 parent 0b3c762 commit 21fa9c9
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/PhpParser/PrettyPrinterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,13 @@ protected function doTestPrettyPrintMethod($method, $name, $code, $expected, $mo

/**
* @dataProvider provideTestPrettyPrint
* @covers \PhpParser\PrettyPrinter\Standard<extended>
*/
public function testPrettyPrint($name, $code, $expected, $mode) {
$this->doTestPrettyPrintMethod('prettyPrint', $name, $code, $expected, $mode);
}

/**
* @dataProvider provideTestPrettyPrintFile
* @covers \PhpParser\PrettyPrinter\Standard<extended>
*/
public function testPrettyPrintFile($name, $code, $expected, $mode) {
$this->doTestPrettyPrintMethod('prettyPrintFile', $name, $code, $expected, $mode);
Expand Down Expand Up @@ -181,7 +179,6 @@ public function testPrettyPrintWithErrorInClassConstFetch() {

/**
* @dataProvider provideTestFormatPreservingPrint
* @covers \PhpParser\PrettyPrinter\Standard<extended>
*/
public function testFormatPreservingPrint($name, $code, $modification, $expected, $modeLine) {
$lexer = new Lexer\Emulative();
Expand Down Expand Up @@ -218,7 +215,6 @@ public function provideTestFormatPreservingPrint() {

/**
* @dataProvider provideTestRoundTripPrint
* @covers \PhpParser\PrettyPrinter\Standard<extended>
*/
public function testRoundTripPrint($name, $code, $expected, $modeLine) {
/**
Expand Down

0 comments on commit 21fa9c9

Please sign in to comment.