diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/PhpBB3Test.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/PhpBB3Test.php b/test/PhpBB3Test.php index ca94526..fbd68e2 100644 --- a/test/PhpBB3Test.php +++ b/test/PhpBB3Test.php @@ -116,4 +116,20 @@ EOF; array(1, true, null) ); } + + /** + * @dataProvider providerGetPostTime + */ + public function testGetPostTime($post_id, $expected, $ex) { + $this->markTestIncomplete(); + + if ($ex) $this->setExpectedException($ex); + $run = 'getPostTime(' . $post_id . ')'; + $this->assertEquals($expected, $this->exec_kludge($run)); + } + + public function providerGetPostTime() { + return array( + ); + } } |