| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class QueryTest extends TestCase |
||
| 11 | { |
||
| 12 | public function testConstruct() : void |
||
| 16 | } |
||
| 17 | |||
| 18 | public function testGetSetQuery() : void |
||
| 19 | { |
||
| 20 | $query = new Query(); |
||
| 21 | $this->assertEquals('', $query->getQuery()); |
||
| 22 | $query->setQuery('param1=value1¶m2=value2'); |
||
| 23 | $this->assertEquals('param1=value1¶m2=value2', $query->getQuery()); |
||
| 24 | } |
||
| 25 | |||
| 26 | public function testToString() : void |
||
| 30 | } |
||
| 31 | |||
| 32 | public function testGetSetData() : void |
||
| 38 | } |
||
| 39 | } |
||
| 40 |