diff --git a/tests/lookup.php b/tests/lookup.php deleted file mode 100644 index 80bb458..0000000 --- a/tests/lookup.php +++ /dev/null @@ -1,28 +0,0 @@ -fileSystemRoot/lib/DefaultLookup.inc"); - - $oLookup = & new DefaultLookup("document_transaction_types_lookup", "View"); - echo "Store? " . ($oLookup->create() ? "Yes" : "No: " . $_SESSION["errorMessage"]) . "
"; - echo "Update? " . ($oLookup->update() ? "Yes" : "No: " . $_SESSION["errorMessage"]) . "
"; - echo "Delete? " . ($oLookup->delete() ? "Yes" : "No: " . $_SESSION["errorMessage"]) . "
"; - $oNewLookup = DefaultLookup::get("document_transaction_types_lookup", 1); - if (!($oNewLookup === false)) { - echo "Get? Yes ->
 " . var_dump($oNewLookup) . "

"; - } else { - echo "Get? No: " . $_SESSION["errorMessage"]; - } -} - -?> diff --git a/tests/system.php b/tests/system.php deleted file mode 100644 index c405ebf..0000000 --- a/tests/system.php +++ /dev/null @@ -1,39 +0,0 @@ -, Jam Warehouse (Pty) Ltd, South Africa - * @package tests - */ - -//if (checkSession()) { - echo "
";
-
-    echo "System::get(ldapServer) = " . $default->system->get("ldapServer") . "\n";
-    echo "System::get(ldapRootDn) = " . $default->system->get("ldapRootDn") . "\n";
-    echo "System::get(emailServer) = " . $default->system->get("emailServer") . "\n";
-    echo "System::get(emailFrom) = " . $default->system->get("emailFrom") . "\n";
-    echo "System::get(emailFromName) = " . $default->system->get("emailFromName") . "\n";
-    echo "System::get(filesystemRoot) = " . $default->system->get("filesystemRoot") . "\n";
-    echo "System::get(documentRoot) = " . $default->system->get("documentRoot") . "\n";
-    echo "System::get(rootUrl) = " . $default->system->get("rootUrl") . "\n";
-    echo "System::get(graphicsUrl) = " . $default->system->get("graphicsUrl") . "\n";
-    
-    echo "System::get(languageDirectory) = " . $default->system->get("languageDirectory") . "\n";
-    echo "System::get(uiDirectory) = " . $default->system->get("uiDirectory") . "\n";
-    echo "System::get(uiUrl) = " . $default->system->get("uiUrl") . "\n";
-    echo "System::get(useFs) = " . $default->system->get("useFs") . "\n";
-    echo "System::get(defaultLanguage) = " . $default->system->get("defaultLanguage") . "\n";
-    //echo "System::get(notificationLink) = " . $default->system->get("notificationLink") . "\n";
-    echo "System::get(sessionTimeout) = " . $default->system->get("sessionTimeout") . "\n";
-    echo "
"; -//} -?> -