blob: 921d52500cf2af9c8b468d16e185812f68f2bcf4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
namespace OAuth2\Storage;
abstract class BaseTest extends \PHPUnit_Framework_TestCase
{
public function provideStorage()
{
$memory = Bootstrap::getInstance()->getMemoryStorage();
$sqlite = Bootstrap::getInstance()->getSqlitePdo();
$mysql = Bootstrap::getInstance()->getMysqlPdo();
$postgres = Bootstrap::getInstance()->getPostgresPdo();
$mongo = Bootstrap::getInstance()->getMongo();
$redis = Bootstrap::getInstance()->getRedisStorage();
$cassandra = Bootstrap::getInstance()->getCassandraStorage();
$dynamodb = Bootstrap::getInstance()->getDynamoDbStorage();
$couchbase = Bootstrap::getInstance()->getCouchbase();
/* hack until we can fix "default_scope" dependencies in other tests */
$memory->defaultScope = 'defaultscope1 defaultscope2';
return array(
array($memory),
array($sqlite),
array($mysql),
array($postgres),
array($mongo),
array($redis),
array($cassandra),
array($dynamodb),
array($couchbase),
);
}
}
|