Skip to content

Commit 01daae8

Browse files
committed
[TASK] Move CalcRuleValueListTest to unit tests
Also add the missing `@covers` annotations for the superclasses of the tested class. Part of #758.
1 parent 5c193b9 commit 01daae8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/Value/CalcRuleValueListTest.php renamed to tests/Unit/Value/CalcRuleValueListTest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@
22

33
declare(strict_types=1);
44

5-
namespace Sabberworm\CSS\Tests\Value;
5+
namespace Sabberworm\CSS\Tests\Unit\Value;
66

77
use PHPUnit\Framework\TestCase;
88
use Sabberworm\CSS\Value\CalcRuleValueList;
99
use Sabberworm\CSS\Value\RuleValueList;
1010

1111
/**
1212
* @covers \Sabberworm\CSS\Value\CalcRuleValueList
13+
* @covers \Sabberworm\CSS\Value\RuleValueList
14+
* @covers \Sabberworm\CSS\Value\Value
15+
* @covers \Sabberworm\CSS\Value\ValueList
1316
*/
1417
final class CalcRuleValueListTest extends TestCase
1518
{

0 commit comments

Comments
 (0)