| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class DefaultToTest extends TestCase |
||
| 8 | { |
||
| 9 | public function testDefaultToAndGetDefaultValue() |
||
| 10 | { |
||
| 11 | $value = null; |
||
| 12 | $defaultValue = 10; |
||
| 13 | $actual = defaultTo($defaultValue)($value); |
||
| 14 | $this->assertEquals($defaultValue, $actual); |
||
| 15 | } |
||
| 16 | |||
| 17 | public function testDefaultToAndGetInputValue() |
||
| 23 | } |
||
| 24 | } |
||
| 25 |