diff --git a/tests/authentication/authentication.php b/tests/authentication/authentication.php
index 0910e56..d8a05a9 100644
--- a/tests/authentication/authentication.php
+++ b/tests/authentication/authentication.php
@@ -43,8 +43,13 @@ if (checkSession()) {
echo "Testing LDAP authentication";
// user credentials to authenticate
- $sUserName = "michael";
- $sPassword = "pass123";
+ $sUserName = "michael"; $sPassword = "pass123";
+ echo "
- Authenticating ($sUserName, $sPassword) : " . ($oLdapAuth->checkPassword($sUserName, $sPassword) ? "true" : "false") . "
";
+
+ $sUserName = "rob"; $sPassword = "rob123";
+ echo "- Authenticating ($sUserName, $sPassword) : " . ($oLdapAuth->checkPassword($sUserName, $sPassword) ? "true" : "false") . "
";
+
+ $sUserName = "mukhtar"; $sPassword = "mukhtar123";
echo "- Authenticating ($sUserName, $sPassword) : " . ($oLdapAuth->checkPassword($sUserName, $sPassword) ? "true" : "false") . "
";
}
?>