You are here

public function Redis_Tests_Queue_AbstractQueueUnitTestCase::tearDown in Redis 7.2

Overrides Redis_Tests_AbstractUnitTestCase::tearDown

File

lib/Redis/Tests/Queue/AbstractQueueUnitTestCase.php, line 29

Class

Redis_Tests_Queue_AbstractQueueUnitTestCase
Some tests in there credits goes to the redis_queue module. Thanks to their author.

Code

public function tearDown() {
  $this->queue
    ->deleteQueue();
  $this->name = null;
  parent::tearDown();
}