Esempio n. 1
0
 public function testLabel()
 {
     $this->assertNull($this->group->getLabel());
     $this->group->setLabel('Label');
     $this->assertEquals('Label', $this->group->getLabel());
     $this->assertEquals('Label', $this->group->__toString());
 }