| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function testSetDir(): void { |
||
| 44 | |||
| 45 | $obj = new DataTablesOrder(); |
||
| 46 | |||
| 47 | $obj->setDir("asc"); |
||
| 48 | $this->assertEquals("ASC", $obj->getDir()); |
||
| 49 | |||
| 50 | $obj->setDir("desc"); |
||
| 51 | $this->assertEquals("DESC", $obj->getDir()); |
||
| 52 | |||
| 53 | $obj->setDir("exception"); |
||
| 54 | $this->assertEquals("ASC", $obj->getDir()); |
||
| 55 | } |
||
| 70 |