Ejemplo n.º 1
0
 /**
  * @covers \Klout\Model\Topic::setDisplayName
  * @covers \Klout\Model\Topic::getDisplayName
  */
 public function testGetDisplayName()
 {
     $topic = new Topic();
     $this->assertNull($topic->getDisplayName());
     $topic->setDisplayName($this->topicData[0]['displayName']);
     $this->assertEquals($this->topicData[0]['displayName'], $topic->getDisplayName());
 }