public function SessionTest::testVisit in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/behat/mink/tests/SessionTest.php \Behat\Mink\Tests\SessionTest::testVisit()
File
- vendor/
behat/ mink/ tests/ SessionTest.php, line 86
Class
Namespace
Behat\Mink\TestsCode
public function testVisit() {
$this->driver
->expects($this
->once())
->method('visit')
->with($url = 'some_url');
$this->session
->visit($url);
}