public function SpecificityTest::testPlusValue in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/css-selector/Tests/Node/SpecificityTest.php \Symfony\Component\CssSelector\Tests\Node\SpecificityTest::testPlusValue()
@dataProvider getValueTestData
File
- vendor/
symfony/ css-selector/ Tests/ Node/ SpecificityTest.php, line 25
Class
Namespace
Symfony\Component\CssSelector\Tests\NodeCode
public function testPlusValue(Specificity $specificity, $value) {
$this
->assertEquals($value + 123, $specificity
->plus(new Specificity(1, 2, 3))
->getValue());
}