Browse Source

Initialize $fixtures to null

Val Bancer 6 years ago
parent
commit
c224bbffc0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/TestSuite/TestCase.php

+ 1 - 1
src/TestSuite/TestCase.php

@@ -49,7 +49,7 @@ abstract class TestCase extends BaseTestCase
      *
      * @var array|string|null
      */
-    public $fixtures;
+    public $fixtures = null;
 
     /**
      * By default, all fixtures attached to this class will be truncated and reloaded after each test.