Ejemplo n.º 1
0
 /**
  * @test
  *
  * @return void
  */
 public function testTagCloudMethods()
 {
     $tagCloud = array('tag1', 'tag2', 'tag3');
     $this->fixture->setTagCloud($tagCloud);
     $this->assertEquals($this->fixture->getTagCloud(), $tagCloud);
     $this->fixture->setTagCloud(' tag1 ,tag2,tag3');
     $this->assertEquals($this->fixture->getTagCloud(), $tagCloud);
 }