/**
* Adds a test log entry.
*
* @param array $entry
* The array of the log entry elements.
*
* @return bool
* TRUE if the addition was successful, FALSE otherwise.
*/
public function insertLogEntry(array
$entry): bool
{ $this->testClass =
$entry['test_class'
];
return $this->testRunResultsStorage->
insertLogEntry($this,
$entry);
} /**
* Get test results for a test run, ordered by test class.
*
* @return array
* Array of results ordered by test class and message id.
*/
public function getLogEntriesByTestClass(): array
{ return $this->testRunResultsStorage->
getLogEntriesByTestClass($this);
}