Gets the latest class under test.
string The test class.
public function getTestClass() : string { if (is_null($this->testClass)) { $state = $this->testRunResultsStorage ->getCurrentTestRunState($this); $this->databasePrefix = $state['db_prefix']; $this->testClass = $state['test_class']; } return $this->testClass; }