You are here

public static function NoAuthEndpointTestRunner::getInfo in Services 7.3

Same name and namespace in other branches
  1. 6.3 tests/functional/NoAuthEndpointTestRunner.test \NoAuthEndpointTestRunner::getInfo()

Implementation of getInfo().

File

tests/functional/NoAuthEndpointTestRunner.test, line 22
This subclass runs the tests with setUp set for services using no authentication. Tests are to be held in the parent class.

Class

NoAuthEndpointTestRunner
Sets conditions for a no-authentication set of endpoint test runs.

Code

public static function getInfo() {
  return array(
    'name' => 'Services Endpoint tests, no auth',
    'description' => 'Test the endpoint functionality when no authentication is turned on',
    'group' => 'Services',
    // The libraries module is required by rest_service, which is used by
    // ServicesEndpointTests.
    'dependencies' => array(
      'ctools',
      'libraries',
    ),
  );
}