You are here

public function BestPracticesTest::provideRequiredMethods in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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\Basic

Code

public function provideRequiredMethods() {
  return array(
    array(
      'start',
    ),
    array(
      'isStarted',
    ),
    array(
      'stop',
    ),
    array(
      'reset',
    ),
    array(
      'visit',
    ),
    array(
      'getCurrentUrl',
    ),
    array(
      'getContent',
    ),
    array(
      'click',
    ),
  );
}