Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class DatalessFieldTest extends SapphireTest |
||
9 | { |
||
10 | public function testGetAttributes() |
||
11 | { |
||
12 | $field = new DatalessField('Name'); |
||
13 | $result = $field->getAttributes(); |
||
14 | $this->assertSame('hidden', $result['type']); |
||
15 | } |
||
16 | |||
17 | public function testFieldHolderAndSmallFieldHolderReturnField() |
||
36 | } |
||
37 | |||
38 | public function testPerformReadonlyTransformation() |
||
44 | } |
||
45 | } |
||
46 |