55namespace Sabberworm \CSS \Tests \Unit \Value ;
66
77use PHPUnit \Framework \TestCase ;
8- use Sabberworm \CSS \Tests \ Unit \ Value \Fixtures \ ConcreteRuleValueList ;
8+ use Sabberworm \CSS \Value \RuleValueList ;
99use Sabberworm \CSS \Value \Size ;
1010
1111/**
@@ -20,19 +20,19 @@ final class RuleValueListTest extends TestCase
2020 */
2121 public function getArrayRepresentationIncludesClassName (): void
2222 {
23- $ subject = new ConcreteRuleValueList ();
23+ $ subject = new RuleValueList ();
2424
2525 $ result = $ subject ->getArrayRepresentation ();
2626
27- self ::assertSame ('ConcreteRuleValueList ' , $ result ['class ' ]);
27+ self ::assertSame ('RuleValueList ' , $ result ['class ' ]);
2828 }
2929
3030 /**
3131 * @test
3232 */
3333 public function getArrayRepresentationIncludesStringComponent (): void
3434 {
35- $ subject = new ConcreteRuleValueList ();
35+ $ subject = new RuleValueList ();
3636 $ subject ->addListComponent ('Helvetica ' );
3737
3838 $ result = $ subject ->getArrayRepresentation ();
@@ -45,7 +45,7 @@ public function getArrayRepresentationIncludesStringComponent(): void
4545 */
4646 public function getArrayRepresentationIncludesValueComponent (): void
4747 {
48- $ subject = new ConcreteRuleValueList ();
48+ $ subject = new RuleValueList ();
4949 $ subject ->addListComponent (new Size (1 ));
5050
5151 $ result = $ subject ->getArrayRepresentation ();
@@ -58,7 +58,7 @@ public function getArrayRepresentationIncludesValueComponent(): void
5858 */
5959 public function getArrayRepresentationIncludesMultipleMixedComponents (): void
6060 {
61- $ subject = new ConcreteRuleValueList ();
61+ $ subject = new RuleValueList ();
6262 $ subject ->addListComponent (new Size (1 ));
6363 $ subject ->addListComponent ('+ ' );
6464 $ subject ->addListComponent (new Size (2 ));
@@ -76,7 +76,7 @@ public function getArrayRepresentationIncludesMultipleMixedComponents(): void
7676 public function getArrayRepresentationIncludesSeparator (): void
7777 {
7878 $ separator = ', ' ;
79- $ subject = new ConcreteRuleValueList ($ separator );
79+ $ subject = new RuleValueList ($ separator );
8080
8181 $ result = $ subject ->getArrayRepresentation ();
8282
0 commit comments