File tree Expand file tree Collapse file tree 7 files changed +0
-22
lines changed Expand file tree Collapse file tree 7 files changed +0
-22
lines changed Original file line number Diff line number Diff line change 9
9
*/
10
10
namespace SebastianBergmann \CodeCoverage \Data ;
11
11
12
- use PHPUnit \Framework \Attributes \CoversClass ;
13
- use PHPUnit \Framework \Attributes \Small ;
14
12
use SebastianBergmann \CodeCoverage \TestCase ;
15
13
16
- #[CoversClass(ProcessedCodeCoverageData::class)]
17
- #[Small]
18
14
final class ProcessedCodeCoverageDataTest extends TestCase
19
15
{
20
16
public function testMergeWithLineCoverage (): void
Original file line number Diff line number Diff line change 9
9
*/
10
10
namespace SebastianBergmann \CodeCoverage \Data ;
11
11
12
- use PHPUnit \Framework \Attributes \CoversClass ;
13
- use PHPUnit \Framework \Attributes \Small ;
14
12
use SebastianBergmann \CodeCoverage \TestCase ;
15
13
16
- #[CoversClass(RawCodeCoverageData::class)]
17
- #[Small]
18
14
final class RawCodeCoverageDataTest extends TestCase
19
15
{
20
16
/**
Original file line number Diff line number Diff line change 15
15
use function iterator_count ;
16
16
use function str_replace ;
17
17
use FilesystemIterator ;
18
- use PHPUnit \Framework \Attributes \CoversNamespace ;
19
18
use RegexIterator ;
20
19
use SebastianBergmann \CodeCoverage \TestCase ;
21
20
22
- #[CoversNamespace('SebastianBergmann\CodeCoverage\Report\Html ' )]
23
21
final class EndToEndTest extends TestCase
24
22
{
25
23
protected function tearDown (): void
Original file line number Diff line number Diff line change 9
9
*/
10
10
namespace SebastianBergmann \CodeCoverage \Report ;
11
11
12
- use PHPUnit \Framework \Attributes \CoversClass ;
13
- use PHPUnit \Framework \Attributes \Small ;
14
12
use ReflectionProperty ;
15
13
use SebastianBergmann \CodeCoverage \TestCase ;
16
14
17
- #[CoversClass(PHP ::class)]
18
- #[Small]
19
15
final class PhpTest extends TestCase
20
16
{
21
17
protected function tearDown (): void
Original file line number Diff line number Diff line change 12
12
use const PHP_EOL ;
13
13
use function str_replace ;
14
14
use PHPUnit \Framework \Attributes \CoversClass ;
15
- use PHPUnit \Framework \Attributes \Small ;
16
15
use SebastianBergmann \CodeCoverage \TestCase ;
17
16
18
17
#[CoversClass(Text::class)]
19
- #[Small]
20
18
final class TextTest extends TestCase
21
19
{
22
20
public function testLineCoverageForBankAccountTest (): void
Original file line number Diff line number Diff line change 14
14
use function iterator_count ;
15
15
use function unlink ;
16
16
use FilesystemIterator ;
17
- use PHPUnit \Framework \Attributes \CoversNamespace ;
18
- use PHPUnit \Framework \Attributes \Small ;
19
17
use SebastianBergmann \CodeCoverage \TestCase ;
20
18
21
- #[CoversNamespace('SebastianBergmann\CodeCoverage\Report\Xml ' )]
22
- #[Small]
23
19
final class XmlTest extends TestCase
24
20
{
25
21
private static string $ TEST_REPORT_PATH_SOURCE ;
Original file line number Diff line number Diff line change 10
10
namespace SebastianBergmann \CodeCoverage \Util ;
11
11
12
12
use PHPUnit \Framework \Attributes \CoversClass ;
13
- use PHPUnit \Framework \Attributes \Small ;
14
13
use PHPUnit \Framework \TestCase ;
15
14
16
15
#[CoversClass(Percentage::class)]
17
- #[Small]
18
16
final class PercentageTest extends TestCase
19
17
{
20
18
public function testCanBeRepresentedAsFloat (): void
You can’t perform that action at this time.
0 commit comments