Example #1
0
 /**
  * @covers generateCss
  */
 public function testGenerateCSS()
 {
     $env = new Context();
     $a = new CommentNode('my comment');
     $output = new StandardOutput();
     $a->generateCss($env, $output);
     $this->assertEquals($output->toString(), 'my comment');
 }