1 | <?php |
||
17 | class DatabaseFactoryTest extends MongoDbTestBase { |
||
18 | |||
19 | public static $modules = ['mongodb']; |
||
20 | |||
21 | /** |
||
|
|||
22 | * @var \Drupal\mongodb\ClientFactory |
||
23 | */ |
||
24 | protected $clientFactory; |
||
25 | |||
26 | /** |
||
27 | * @var \Drupal\mongodb\DatabaseFactory |
||
28 | */ |
||
29 | protected $databaseFactory; |
||
30 | |||
31 | public function setUp() { |
||
36 | |||
37 | public function testGetHappy() { |
||
41 | |||
42 | public function testGetSadUnsetAlias() { |
||
56 | |||
57 | public function testGetSadAliasForBadDatabase() { |
||
61 | |||
62 | } |
||
63 |