public function testSetDescription()
 {
     $expected = $this->newValues['description'];
     $this->calendar->setDescription($expected);
     $actual = $this->calendar->getDescription();
     $this->assertSame($expected, $actual);
 }