markTestSkipped('Please set the MYSQL_* environment variables to your test database credentials.'); } Intercept::setUp(); $this->setUpVfsDir(); $this->mockApp($this->root); } protected function tearDown() { \Mockery::close(); parent::tearDown(); } /** * Dumps the execution of an console output to a string and returns it * * @param Console $console The current console instance * * @return string the output of the execution */ protected function dumpExecute($console) { Intercept::reset(); $console->execute(); $returnStr = Intercept::$cache; Intercept::reset(); return $returnStr; } }