You are here

public function Redis_Tests_Queue_QueueUnitTestCase::tearDown in Redis 7.3

Overrides Redis_Tests_AbstractUnitTestCase::tearDown

File

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

Class

Redis_Tests_Queue_QueueUnitTestCase
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();
}