PhpBench\Tests\Unit\Storage\Driver\DbalDriverTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        $this->loader = $this->prophesize(Loader::class);
        $this->persister = $this->prophesize(Persister::class);
        $this->repository = $this->prophesize(Repository::class);
        $this->constraint = $this->prophesize(Constraint::class);
        $this->suiteCollection = $this->prophesize(SuiteCollection::class);
        $this->driver = new DbalDriver($this->loader->reveal(), $this->persister->reveal(), $this->repository->reveal());
    }