public function BestPracticesTest::testExtendsCoreDriver in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/behat/mink/driver-testsuite/tests/Basic/BestPracticesTest.php \Behat\Mink\Tests\Driver\Basic\BestPracticesTest::testExtendsCoreDriver()
File
- vendor/
behat/ mink/ driver-testsuite/ tests/ Basic/ BestPracticesTest.php, line 12
Class
- BestPracticesTest
- This testcase ensures that the driver implementation follows recommended practices for drivers.
Namespace
Behat\Mink\Tests\Driver\BasicCode
public function testExtendsCoreDriver() {
$driver = $this
->createDriver();
$this
->assertInstanceOf('Behat\\Mink\\Driver\\CoreDriver', $driver);
return $driver;
}