Skip to content

Commit 5c7a87b

Browse files
Revert "Make it obvious the code in the SebastianBergmann\CodeCoverage\Node namespace is currently not tested specifically"
This reverts commit e1c6a61.
1 parent c5d0506 commit 5c7a87b

File tree

7 files changed

+0
-22
lines changed

7 files changed

+0
-22
lines changed

tests/tests/Data/ProcessedCodeCoverageDataTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,8 @@
99
*/
1010
namespace SebastianBergmann\CodeCoverage\Data;
1111

12-
use PHPUnit\Framework\Attributes\CoversClass;
13-
use PHPUnit\Framework\Attributes\Small;
1412
use SebastianBergmann\CodeCoverage\TestCase;
1513

16-
#[CoversClass(ProcessedCodeCoverageData::class)]
17-
#[Small]
1814
final class ProcessedCodeCoverageDataTest extends TestCase
1915
{
2016
public function testMergeWithLineCoverage(): void

tests/tests/Data/RawCodeCoverageDataTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,8 @@
99
*/
1010
namespace SebastianBergmann\CodeCoverage\Data;
1111

12-
use PHPUnit\Framework\Attributes\CoversClass;
13-
use PHPUnit\Framework\Attributes\Small;
1412
use SebastianBergmann\CodeCoverage\TestCase;
1513

16-
#[CoversClass(RawCodeCoverageData::class)]
17-
#[Small]
1814
final class RawCodeCoverageDataTest extends TestCase
1915
{
2016
/**

tests/tests/Report/Html/EndToEndTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@
1515
use function iterator_count;
1616
use function str_replace;
1717
use FilesystemIterator;
18-
use PHPUnit\Framework\Attributes\CoversNamespace;
1918
use RegexIterator;
2019
use SebastianBergmann\CodeCoverage\TestCase;
2120

22-
#[CoversNamespace('SebastianBergmann\CodeCoverage\Report\Html')]
2321
final class EndToEndTest extends TestCase
2422
{
2523
protected function tearDown(): void

tests/tests/Report/PhpTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,9 @@
99
*/
1010
namespace SebastianBergmann\CodeCoverage\Report;
1111

12-
use PHPUnit\Framework\Attributes\CoversClass;
13-
use PHPUnit\Framework\Attributes\Small;
1412
use ReflectionProperty;
1513
use SebastianBergmann\CodeCoverage\TestCase;
1614

17-
#[CoversClass(PHP::class)]
18-
#[Small]
1915
final class PhpTest extends TestCase
2016
{
2117
protected function tearDown(): void

tests/tests/Report/TextTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@
1212
use const PHP_EOL;
1313
use function str_replace;
1414
use PHPUnit\Framework\Attributes\CoversClass;
15-
use PHPUnit\Framework\Attributes\Small;
1615
use SebastianBergmann\CodeCoverage\TestCase;
1716

1817
#[CoversClass(Text::class)]
19-
#[Small]
2018
final class TextTest extends TestCase
2119
{
2220
public function testLineCoverageForBankAccountTest(): void

tests/tests/Report/XmlTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,8 @@
1414
use function iterator_count;
1515
use function unlink;
1616
use FilesystemIterator;
17-
use PHPUnit\Framework\Attributes\CoversNamespace;
18-
use PHPUnit\Framework\Attributes\Small;
1917
use SebastianBergmann\CodeCoverage\TestCase;
2018

21-
#[CoversNamespace('SebastianBergmann\CodeCoverage\Report\Xml')]
22-
#[Small]
2319
final class XmlTest extends TestCase
2420
{
2521
private static string $TEST_REPORT_PATH_SOURCE;

tests/tests/Util/PercentageTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@
1010
namespace SebastianBergmann\CodeCoverage\Util;
1111

1212
use PHPUnit\Framework\Attributes\CoversClass;
13-
use PHPUnit\Framework\Attributes\Small;
1413
use PHPUnit\Framework\TestCase;
1514

1615
#[CoversClass(Percentage::class)]
17-
#[Small]
1816
final class PercentageTest extends TestCase
1917
{
2018
public function testCanBeRepresentedAsFloat(): void

0 commit comments

Comments
 (0)