Ejemplo n.º 1
0
 /**
  * @covers PhCompile\PhCompile::getDirectives
  * @depends testAddDirective
  */
 public function testGetDirectives()
 {
     $repeat = new NgRepeat($this->phCompile);
     $this->phCompile->addDirective($repeat);
     $directives = $this->phCompile->getDirectives();
     $this->assertContains($repeat, $directives);
 }