| Total Complexity | 3 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | class DataTablesSearchTest extends AbstractTestCase { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Test setRegex() |
||
| 27 | * |
||
| 28 | * @return void |
||
| 29 | */ |
||
| 30 | public function testSetRegex(): void { |
||
| 31 | |||
| 32 | $obj = new DataTablesSearch(); |
||
| 33 | |||
| 34 | $obj->setRegex(true); |
||
| 35 | $this->assertTrue($obj->getRegex()); |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Test setValue() |
||
| 40 | * |
||
| 41 | * @return void |
||
| 42 | */ |
||
| 43 | public function testSetValue(): void { |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Test __construct() |
||
| 53 | */ |
||
| 54 | public function test__construct(): void { |
||
| 60 | } |
||
| 61 | } |
||
| 62 |