summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-03-21 19:12:29 +0000
committeruckelman <uckelman@nomic.net>2010-03-21 19:12:29 +0000
commit2645db54fe03db5c0ae82fe81717cc53ef28787d (patch)
tree119f133334dcd87755869348246bd5e400f5c112 /test
parentaab481efddce9501b125e995d82c50f03e08d6e7 (diff)
Added get_user_name().
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6626 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test')
-rw-r--r--test/PhpBB3LibTest.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/PhpBB3LibTest.php b/test/PhpBB3LibTest.php
index cfad41f..76e5bdc 100644
--- a/test/PhpBB3LibTest.php
+++ b/test/PhpBB3LibTest.php
@@ -47,4 +47,20 @@ EOF;
array('uckelman@nomic.net', 2, null)
);
}
+
+ /**
+ * @dataProvider provider_get_user_name
+ */
+ public function test_get_user_name($id, $expected, $ex) {
+ if ($ex) $this->setExpectedException($ex);
+ $run = 'get_user_name(' . $id . ')';
+ $this->assertEquals($expected, $this->exec_kludge($run));
+ }
+
+ public function provider_get_user_name() {
+ return array(
+ array(0, null, 'PHPUnit_Framework_Error'),
+ array(2, 'admin', null )
+ );
+ }
}