public function TravisLogEventListener::startTest in Search API Solr 8.3
Same name and namespace in other branches
- 8 tests/src/TravisLogEventListener.php \Drupal\Tests\search_api_solr\TravisLogEventListener::startTest()
File
- tests/
src/ TravisLogEventListener.php, line 67
Class
Namespace
Drupal\Tests\search_api_solrCode
public function startTest(Test $test) : void {
// In case of a runtime error in the previous test, keep the log.
if (file_exists(TRAVIS_BUILD_DIR . '/solr.query.log')) {
file_put_contents(TRAVIS_BUILD_DIR . '/solr.error.log', file_get_contents(TRAVIS_BUILD_DIR . '/solr.query.log'), FILE_APPEND | LOCK_EX);
}
$this->errors = FALSE;
}