diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-06-27 19:39:38 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-06-27 19:39:38 +0200 |
commit | 6ec3b102aa896df8ddcf6323e0635dc42ac25f98 (patch) | |
tree | 5215bb0cc69d68b69767292afc7838217d48b8b5 /tests/TestBase.php | |
parent | d2aecd8a76a8c1f0d326cae13f158b74b6e60709 (diff) | |
download | semanticscuttle-6ec3b102aa896df8ddcf6323e0635dc42ac25f98.tar.gz semanticscuttle-6ec3b102aa896df8ddcf6323e0635dc42ac25f98.tar.bz2 |
make the private tests really test something
Diffstat (limited to 'tests/TestBase.php')
-rw-r--r-- | tests/TestBase.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/TestBase.php b/tests/TestBase.php index 5ea656c..2180d2d 100644 --- a/tests/TestBase.php +++ b/tests/TestBase.php @@ -76,8 +76,8 @@ class TestBase extends PHPUnit_Framework_TestCase /** * Creates a new user in the database. * - * @param string $username Username - * @param string $password Password + * @param string $username Username, may be null + * @param string $password Password, may be null * @param mixed $privateKey String private key or boolean true to generate one * * @return integer ID of user @@ -95,8 +95,8 @@ class TestBase extends PHPUnit_Framework_TestCase /** * Creates a new user in the database and returns id, username and password. * - * @param string $username Username - * @param string $password Password + * @param string $username Username, may be null + * @param string $password Password, may be null * @param mixed $privateKey String private key or boolean true to generate one * * @return array ID of user, Name of user, password of user, privatekey |