Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class StaticPartialQueryTest extends TestCase |
||
12 | { |
||
13 | public function testRegisterDataLoader() |
||
14 | { |
||
15 | $query = new StaticPartialQuery('FROM users', ['foo'=>42], ['users'], $this->createMock(StorageNode::class), new MagicQuery()); |
||
16 | $this->expectException(TDBMException::class); |
||
17 | $query->registerDataLoader($this->createMock(Connection::class)); |
||
18 | } |
||
19 | |||
20 | public function testGetMagicQuery() |
||
25 | } |
||
26 | |||
27 | public function testGetParameters() |
||
32 | } |
||
33 | } |
||
34 |