public function testAddWarnings()
 {
     for ($i = 0; $i < 3; $i++) {
         $warning = new CompilerResponseError('foo', array());
         $this->response->addWarning($warning);
     }
     $this->assertCount(3, $this->response->getWarnings());
 }