Done testing with test.php - removed

Signed-off-by: Edouard Poitras <edouard@eclipse.org>
diff --git a/test.php b/test.php
deleted file mode 100644
index edab379..0000000
--- a/test.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-error_reporting(E_ALL);
-ini_set('display_errors', 1);
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/evt_log.class.php");
-$EventLog = new EvtLog();
-$EventLog->setLogTable("__paypal.class"); // To make browsing the log table easier
-$EventLog->setPK1('test');
-$EventLog->setPK2($_SERVER['REMOTE_ADDR']);
-$EventLog->setLogAction("one");
-$EventLog->insertModLog('two');
-print_r('done');
-?>