1 | <?php |
||
10 | class MongoTestCase extends WebTestCase |
||
11 | { |
||
12 | |||
13 | public $testRepo; |
||
14 | public $manager; |
||
15 | public $k; |
||
16 | public $container = null; |
||
17 | |||
18 | private $config = [ |
||
19 | "db" => "mongodbbundle", |
||
20 | "host" => "localhost", |
||
21 | "port" => "27017", |
||
22 | "username" => null, |
||
23 | "password" => null, |
||
24 | "schema" => ['Foo' => ['indexes' => ["bar" => -1]]], |
||
25 | "options" => [] |
||
26 | ]; |
||
27 | |||
28 | /** |
||
29 | * Setup the test class |
||
30 | */ |
||
31 | public function setUp() |
||
47 | |||
48 | } |
||
49 |