1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-20 15:53:14 +02:00

[ticket/9983] Create driver in setup in null driver test.

PHPBB3-9983
This commit is contained in:
Oleg Pudeyev 2012-12-01 15:06:32 -05:00
parent 1e3dff83b3
commit 829b75e5c8

View File

@ -9,18 +9,25 @@
class phpbb_cache_null_driver_test extends phpbb_database_test_case
{
protected $driver;
public function getDataSet()
{
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/config.xml');
}
protected function setUp()
{
parent::setUp();
$this->driver = new phpbb_cache_driver_null;
}
public function test_null_cache_sql()
{
$driver = new phpbb_cache_driver_null;
global $db, $cache;
$db = $this->new_dbal();
$cache = new phpbb_cache_service($driver);
$cache = new phpbb_cache_service($this->driver);
$sql = "SELECT * FROM phpbb_config
WHERE config_name = 'foo'";