You are here

public function ComparatorTest::testGetSetTarget in Database Sanitize 7

File

vendor/symfony/finder/Tests/Comparator/ComparatorTest.php, line 34

Class

ComparatorTest

Namespace

Symfony\Component\Finder\Tests\Comparator

Code

public function testGetSetTarget() {
  $comparator = new Comparator();
  $comparator
    ->setTarget(8);
  $this
    ->assertEquals(8, $comparator
    ->getTarget(), '->getTarget() returns the target');
}