Ejemplo n.º 1
0
 /**
  * Test the custom tag setters and getters
  */
 public function testSetCustomTags()
 {
     $this->class->setAllowedTags(new TestAllowedTags());
     $tags = $this->class->getAllowedTags();
     $this->assertInternalType('array', $tags);
     $this->assertEquals(TestAllowedTags::getTags(), $tags);
 }