Exemplo n.º 1
0
 /**
  * Abort command execution with a given error message
  *
  * @param string $message
  */
 protected function abort_command($message)
 {
     $this->call('migrate:reset');
     $this->error($message);
     $this->mockably->mockable_die();
 }
Exemplo n.º 2
0
 /**
  * @test microtime() can return float
  */
 public function microtime_can_return_float()
 {
     $mockably = new Mockably();
     $this->assertInternalType('float', $mockably->microtime());
 }