/**
  *
  */
 public function testSetAndGetDateFormat()
 {
     $format = Compiler::getDateFormat();
     Compiler::setDateFormat('foobar');
     $this->assertSame('foobar', Compiler::getDateFormat());
     Compiler::setDateFormat($format);
 }