assertSame('ldap', (new Section('ldap', 'name', 1))->getID()); } public function testGetName(): void { $this->assertSame('name', (new Section('ldap', 'name', 1))->getName()); } public function testGetPriority(): void { $this->assertSame(1, (new Section('ldap', 'name', 1))->getPriority()); } }