| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class ExcludesNameEntryTest extends TestCase |
||
| 6 | { |
||
| 7 | public function setUp(): void |
||
| 8 | { |
||
| 9 | $this->entry = new ExcludesNameEntry(); |
||
|
|
|||
| 10 | } |
||
| 11 | public function testSetName() |
||
| 12 | { |
||
| 13 | $this->entry->setName("test"); |
||
| 14 | $this->assertEquals($this->entry->getName(), "test"); |
||
| 15 | $this->entry->setName("test2"); |
||
| 16 | $this->assertEquals($this->entry->getName(), "test2"); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function testAddText() |
||
| 25 | } |
||
| 26 | |||
| 27 | public function testToString() |
||
| 33 |