stanley-king il y a 3 ans
Parent
commit
751fbeb50b
1 fichiers modifiés avec 22 ajouts et 0 suppressions
  1. 22 0
      test/TestBackup.php

+ 22 - 0
test/TestBackup.php

@@ -0,0 +1,22 @@
+<?php
+use PHPUnit\Framework\TestCase;
+
+define('APP_ID', 'test');
+define('BASE_ROOT_PATH', str_replace('/test', '', dirname(__FILE__)));
+
+require_once(BASE_ROOT_PATH . '/global.php');
+require_once(BASE_CORE_PATH . '/lrlz.php');
+require_once(BASE_ROOT_PATH . '/fooder.php');
+require_once(BASE_HELPER_PATH . '/refill/RefillFactory.php');
+
+class TestBackup extends TestCase
+{
+    public static function setUpBeforeClass(): void
+    {
+        Base::run_util();
+    }
+
+
+
+
+}