| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class StrToLowerTest extends AbstractRule |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Test that all characters are properly uppercased. |
||
| 19 | */ |
||
| 20 | 1 | public function testStrToLower() |
|
| 21 | { |
||
| 22 | 1 | $this->assertRuleResults([], [], ['value' => 'My tEsT'], 'my test'); |
|
| 23 | 1 | } |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @inheritdoc |
||
| 27 | */ |
||
| 28 | 2 | protected function getRule() |
|
| 31 | } |
||
| 32 | } |