From 67e5e36ad4d549506b144c2ca81013fa0b60724a Mon Sep 17 00:00:00 2001 From: Nafies Luthfi Date: Wed, 3 Apr 2019 12:10:40 +0800 Subject: [PATCH] Add withoutMockingConsoleOutput method call --- tests/TestCase.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/TestCase.php b/tests/TestCase.php index 1972e6c..908462c 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -25,6 +25,8 @@ abstract class TestCase extends BaseTestCase $this->lang_name = snake_case($this->model_name); $this->collection_model_var_name = camel_case($this->plural_model_name); $this->single_model_var_name = camel_case($this->model_name); + + $this->withoutMockingConsoleOutput(); } public function tearDown()