public function BestPracticesTest::provideRequiredMethods in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/driver-testsuite/tests/Basic/BestPracticesTest.php \Behat\Mink\Tests\Driver\Basic\BestPracticesTest::provideRequiredMethods()
File
- vendor/
behat/ mink/ driver-testsuite/ tests/ Basic/ BestPracticesTest.php, line 43
Class
- BestPracticesTest
- This testcase ensures that the driver implementation follows recommended practices for drivers.
Namespace
Behat\Mink\Tests\Driver\BasicCode
public function provideRequiredMethods() {
return array(
array(
'start',
),
array(
'isStarted',
),
array(
'stop',
),
array(
'reset',
),
array(
'visit',
),
array(
'getCurrentUrl',
),
array(
'getContent',
),
array(
'click',
),
);
}