Exemple #1
0
 /**
  * Verifies that we can find the end of a custom stub.
  */
 public function testFindEndOfStubCustom()
 {
     self::assertEquals(53, Extract::findEndOfStub($this->buildArchive(function (Builder $builder) {
         $builder->setStub('<?php echo "Hello, world!\\n"; __HALT_COMPILER(); ?>');
     }), Extract::getOpenPattern()));
 }