protected function SessionTest::setUp in Zircon Profile 8
Same name in this branch
- 8 vendor/behat/mink/tests/SessionTest.php \Behat\Mink\Tests\SessionTest::setUp()
- 8 vendor/symfony/http-foundation/Tests/Session/SessionTest.php \Symfony\Component\HttpFoundation\Tests\Session\SessionTest::setUp()
Same name and namespace in other branches
- 8.0 vendor/behat/mink/tests/SessionTest.php \Behat\Mink\Tests\SessionTest::setUp()
File
- vendor/
behat/ mink/ tests/ SessionTest.php, line 22
Class
Namespace
Behat\Mink\TestsCode
protected function setUp() {
$this->driver = $this
->getMockBuilder('Behat\\Mink\\Driver\\DriverInterface')
->getMock();
$this->selectorsHandler = $this
->getMockBuilder('Behat\\Mink\\Selector\\SelectorsHandler')
->getMock();
$this->session = new Session($this->driver, $this->selectorsHandler);
}