1.20.x cache.test | protected CacheTestCase::generalWipe($bin = NULL) |
Perform the general wipe.
Parameters
$bin: The bin to perform the wipe on.
File
- modules/
simpletest/ tests/ cache.test, line 83
Class
Code
protected function generalWipe($bin = NULL) {
if ($bin == NULL) {
$bin = $this->default_bin;
}
cache($bin)->garbageCollection();
}