From 031901f8b6791c172d8a4afec131aef8556b1cd5 Mon Sep 17 00:00:00 2001 From: wadih Date: Wed, 8 Jul 2020 22:19:59 -0400 Subject: [PATCH] Add a warning to prevent accidents (#65) --- simpletest/test.php | 1 + 1 file changed, 1 insertion(+) diff --git a/simpletest/test.php b/simpletest/test.php index 654e9ae..6c0ae69 100755 --- a/simpletest/test.php +++ b/simpletest/test.php @@ -28,6 +28,7 @@ ini_set('date.timezone', 'America/Los_Angeles'); error_reporting(E_ALL | E_STRICT); require_once '../db.class.php'; include 'test_setup.php'; //test config values go here +// WARNING: ALL tables in the database will be dropped before the tests, including non-test related tables. DB::$user = $set_db_user; DB::$password = $set_password; DB::$dbName = $set_db;