You are here

protected function MockServicesRESTServerFactory::getContext in Services 7.3

Overrides ServicesRESTServerFactory::getContext

File

servers/rest_server/tests/rest_server_mock_classes.inc, line 14

Class

MockServicesRESTServerFactory
Factory to build RESTServer object for testing.

Code

protected function getContext() {
  $context = new MockServicesContext($this->data['endpoint_path']);
  $context
    ->setData($this->data['context_data']);
  return $context;
}