示例#1
0
 public function testLabel()
 {
     $this->assertNull($this->dashboard->getLabel());
     $value = 'test';
     $this->assertEquals($this->dashboard, $this->dashboard->setLabel($value));
     $this->assertEquals($value, $this->dashboard->getLabel());
 }