You are here

public function reportQuail_api::getReport in Quail API 8

Same name and namespace in other branches
  1. 7 includes/quail_api_reporters.inc \reportQuail_api::getReport()

Compatibility function provided for the quail library to call. This is the same as calling generate_report(), followed by get_report().

Return value

array An array containing the results of all tests performed.

File

includes/quail_api_reporters.inc, line 27
Contains quail reporter class objects for the quail api.

Class

reportQuail_api
An array reporter that generates a nested array of tests and report objects.

Code

public function getReport() {
  $this
    ->generate_report();
  return $this->quail_api_report;
}