3declare(strict_types=1);
21require_once(__DIR__ .
"/../../../../../libs/composer/vendor/autoload.php");
22require_once(__DIR__ .
"/../../../Base.php");
36 $color = $df->color(
"#000000");
37 $bc1 = $bc->withColor($color);
39 $this->assertEquals(
null, $bc->getColor());
40 $this->assertEquals($color, $bc1->getColor());
49 $bc1 = $bc->withRelativeWidth($width);
51 $this->assertEquals(
null, $bc->getRelativeWidth());
52 $this->assertEquals($width, $bc1->getRelativeWidth());
Test on Bar Configuration implementation.
Provides common functionality for UI tests.