eZ\Publish\Core\Search\Legacy\Tests\Content\HandlerContentSortTest::setUp PHP Method

setUp() public method

Skipping the reset-up, since setting up for these tests takes quite some time, which is not required to spent, since we are only reading from the database anyways.
public setUp ( )
    public function setUp()
    {
        if (!self::$setUp) {
            parent::setUp();
            $this->insertDatabaseFixture(__DIR__ . '/../_fixtures/full_dump.php');
            self::$setUp = $this->handler;
        } else {
            $this->handler = self::$setUp;
        }
    }