aboutsummaryrefslogtreecommitdiffstats
path: root/tests/groupposition/teampage_test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/groupposition/teampage_test.php')
-rw-r--r--tests/groupposition/teampage_test.php12
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/groupposition/teampage_test.php b/tests/groupposition/teampage_test.php
index 7d00e2c5d3..b0ce6b29c3 100644
--- a/tests/groupposition/teampage_test.php
+++ b/tests/groupposition/teampage_test.php
@@ -20,15 +20,16 @@ class phpbb_groupposition_teampage_test extends phpbb_database_test_case
public function get_group_value_data()
{
return array(
- array(2, 3),
- array(6, 8),
+ array(2, 3, ''),
+ array(6, 8, ''),
+ array(10, 0, 'phpbb_groupposition_exception'),
);
}
/**
* @dataProvider get_group_value_data
*/
- public function test_get_group_value($group_id, $expected)
+ public function test_get_group_value($group_id, $expected, $throws_exception)
{
global $cache;
@@ -37,6 +38,11 @@ class phpbb_groupposition_teampage_test extends phpbb_database_test_case
$user = new phpbb_user;
$user->lang = array();
+ if ($throws_exception)
+ {
+ $this->setExpectedException($throws_exception);
+ }
+
$test_class = new phpbb_groupposition_teampage($db, $user, $cache);
$this->assertEquals($expected, $test_class->get_group_value($group_id));
}