Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function testTransform() |
||
12 | { |
||
13 | $field = new TextField('Test'); |
||
14 | |||
15 | $transformation = new DisabledTransformation(); |
||
16 | $newField = $transformation->transform($field); |
||
17 | |||
18 | $this->assertTrue($newField->isDisabled(), 'Transformation failed to transform field to be disabled'); |
||
19 | } |
||
21 |