public function testIsCompiled()
 {
     $this->assertTrue($this->response->isCompiled());
     $error = new CompilerResponseError('foo', array());
     $this->response->addError($error);
     $this->assertFalse($this->response->isCompiled());
 }