File tree Expand file tree Collapse file tree 7 files changed +22
-0
lines changed Expand file tree Collapse file tree 7 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 99 */
1010namespace SebastianBergmann \CodeCoverage \Data ;
1111
12+ use PHPUnit \Framework \Attributes \CoversClass ;
13+ use PHPUnit \Framework \Attributes \Small ;
1214use SebastianBergmann \CodeCoverage \TestCase ;
1315
16+ #[CoversClass(ProcessedCodeCoverageData::class)]
17+ #[Small]
1418final class ProcessedCodeCoverageDataTest extends TestCase
1519{
1620 public function testMergeWithLineCoverage (): void
Original file line number Diff line number Diff line change 99 */
1010namespace SebastianBergmann \CodeCoverage \Data ;
1111
12+ use PHPUnit \Framework \Attributes \CoversClass ;
13+ use PHPUnit \Framework \Attributes \Small ;
1214use SebastianBergmann \CodeCoverage \TestCase ;
1315
16+ #[CoversClass(RawCodeCoverageData::class)]
17+ #[Small]
1418final class RawCodeCoverageDataTest extends TestCase
1519{
1620 /**
Original file line number Diff line number Diff line change 1515use function iterator_count ;
1616use function str_replace ;
1717use FilesystemIterator ;
18+ use PHPUnit \Framework \Attributes \CoversNamespace ;
1819use RegexIterator ;
1920use SebastianBergmann \CodeCoverage \TestCase ;
2021
22+ #[CoversNamespace('SebastianBergmann\CodeCoverage\Report\Html ' )]
2123final class EndToEndTest extends TestCase
2224{
2325 protected function tearDown (): void
Original file line number Diff line number Diff line change 99 */
1010namespace SebastianBergmann \CodeCoverage \Report ;
1111
12+ use PHPUnit \Framework \Attributes \CoversClass ;
13+ use PHPUnit \Framework \Attributes \Small ;
1214use ReflectionProperty ;
1315use SebastianBergmann \CodeCoverage \TestCase ;
1416
17+ #[CoversClass(PHP ::class)]
18+ #[Small]
1519final class PhpTest extends TestCase
1620{
1721 protected function tearDown (): void
Original file line number Diff line number Diff line change 1212use const PHP_EOL ;
1313use function str_replace ;
1414use PHPUnit \Framework \Attributes \CoversClass ;
15+ use PHPUnit \Framework \Attributes \Small ;
1516use SebastianBergmann \CodeCoverage \TestCase ;
1617
1718#[CoversClass(Text::class)]
19+ #[Small]
1820final class TextTest extends TestCase
1921{
2022 public function testLineCoverageForBankAccountTest (): void
Original file line number Diff line number Diff line change 1414use function iterator_count ;
1515use function unlink ;
1616use FilesystemIterator ;
17+ use PHPUnit \Framework \Attributes \CoversNamespace ;
18+ use PHPUnit \Framework \Attributes \Small ;
1719use SebastianBergmann \CodeCoverage \TestCase ;
1820
21+ #[CoversNamespace('SebastianBergmann\CodeCoverage\Report\Xml ' )]
22+ #[Small]
1923final class XmlTest extends TestCase
2024{
2125 private static string $ TEST_REPORT_PATH_SOURCE ;
Original file line number Diff line number Diff line change 1010namespace SebastianBergmann \CodeCoverage \Util ;
1111
1212use PHPUnit \Framework \Attributes \CoversClass ;
13+ use PHPUnit \Framework \Attributes \Small ;
1314use PHPUnit \Framework \TestCase ;
1415
1516#[CoversClass(Percentage::class)]
17+ #[Small]
1618final class PercentageTest extends TestCase
1719{
1820 public function testCanBeRepresentedAsFloat (): void
You can’t perform that action at this time.
0 commit comments