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