Exemplo n.º 1
0
 /**
  * 
  * Test -- Run this plugin during the "prepare" phase?
  * 
  */
 public function testIsPrepare()
 {
     if (!is_bool($this->_is_prepare)) {
         $this->todo('need to set $_is_prepare test property');
     }
     $actual = $this->_plugin->isPrepare();
     $expect = $this->_is_prepare;
     $this->assertSame($actual, $expect);
 }