You are here

public function SessionTest::testRestart in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/behat/mink/tests/SessionTest.php \Behat\Mink\Tests\SessionTest::testRestart()

File

vendor/behat/mink/tests/SessionTest.php, line 76

Class

SessionTest

Namespace

Behat\Mink\Tests

Code

public function testRestart() {
  $this->driver
    ->expects($this
    ->at(0))
    ->method('stop');
  $this->driver
    ->expects($this
    ->at(1))
    ->method('start');
  $this->session
    ->restart();
}