disable() public method

Disable this mock.
See also: Mock::enable()
See also: Mock::disableAll()
public disable ( )
Example #1
1
 /**
  * Tests the example from the documentation.
  *
  * @expectedException Exception
  */
 public function testExample4()
 {
     $function = function () {
         throw new \Exception();
     };
     $mock = new Mock(__NAMESPACE__, "time", $function);
     $mock->enable();
     try {
         time();
     } finally {
         $mock->disable();
     }
 }
Example #2
0
 protected function tearDown()
 {
     if (!empty($this->mock)) {
         $this->mock->disable();
         unset($this->mock);
     }
 }
 protected function tearDown()
 {
     if (isset($this->mock)) {
         $this->mock->disable();
     }
 }