You are here

public function CoreDriverTest::getDriverInterfaceMethods in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/behat/mink/tests/Driver/CoreDriverTest.php \Behat\Mink\Tests\Driver\CoreDriverTest::getDriverInterfaceMethods()

File

vendor/behat/mink/tests/Driver/CoreDriverTest.php, line 72

Class

CoreDriverTest

Namespace

Behat\Mink\Tests\Driver

Code

public function getDriverInterfaceMethods() {
  $ref = new \ReflectionClass('Behat\\Mink\\Driver\\DriverInterface');
  return array_map(function ($method) {
    return array(
      $method,
    );
  }, $ref
    ->getMethods());
}