public function ComparatorTest::testGetSetTarget in Database Sanitize 7
File
- vendor/
symfony/ finder/ Tests/ Comparator/ ComparatorTest.php, line 34
Class
Namespace
Symfony\Component\Finder\Tests\ComparatorCode
public function testGetSetTarget() {
$comparator = new Comparator();
$comparator
->setTarget(8);
$this
->assertEquals(8, $comparator
->getTarget(), '->getTarget() returns the target');
}