| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function testGetMatchOptionsDataStructure() |
||
| 11 | { |
||
| 12 | $result = ResultConditionsField::getMatchOptions(); |
||
| 13 | |||
| 14 | $this->assertNotEmpty($result, 'Match options should be returned'); |
||
| 15 | $this->assertArrayHasKey('value', $result[0], 'Unexpected data structure returned'); |
||
| 16 | $this->assertArrayHasKey('title', $result[0], 'Unexpected data structure returned'); |
||
| 17 | } |
||
| 19 |