| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function testGettersAndSetters() |
||
| 34 | { |
||
| 35 | $this->setting->setEditable(true); |
||
| 36 | $this->assertTrue($this->setting->isEditable()); |
||
| 37 | |||
| 38 | $this->setting->setName('name'); |
||
| 39 | $this->assertEquals('name', $this->setting->getName()); |
||
| 40 | |||
| 41 | $this->setting->setValue('value'); |
||
| 42 | $this->assertEquals('value', $this->setting->getValue()); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |