* @license http://www.opensource.org/licenses/mit-license.php */ class Resque_Tests_TestCase extends PHPUnit\Framework\TestCase { protected $resque; protected $redis; public static function setUpBeforeClass() { date_default_timezone_set('UTC'); } public function setUp() { // Setup redis connection on DB 9 for testing. $this->redis = new Redis(); $this->redis->connect('localhost'); Resque::setBackend('localhost'); $this->redis->flushAll(); } }