/**
  * Provides the test definition data
  */
 public function getTestData()
 {
     $code = 200;
     try {
         $serviceContext = $this->getServiceContext();
         $response = ['testData' => $this->runnerService->getTestData($serviceContext), 'success' => true];
     } catch (common_Exception $e) {
         $response = $this->getErrorResponse($e);
         $code = $this->getErrorCode($e);
     }
     $this->returnJson($response, $code);
 }