0byt3m1n1
Path:
/
data
/
applications
/
aps
/
phpwiki
/
1.3.14-6
/
standard
/
htdocs
/
tests
/
unit
/
lib
/
plugin
/
[
Home
]
File: WantedPagesTest.php
<?php require_once 'lib/WikiPlugin.php'; require_once 'lib/plugin/WantedPages.php'; require_once 'PHPUnit.php'; class WantedPagesTest extends phpwiki_TestCase { /** * Test that we can instantiate and run WantedPages plugin without error. */ function testWantedPages() { global $request; $lp = new WikiPlugin_WantedPages(); $this->assertEquals("WantedPages", $lp->getName()); $basepage = ""; $args = ""; $result = $lp->run($request->getDbh(), $args, $request, $basepage); $this->assertType('object', $result, 'isa PageList'); $args = "HomePage"; $result = $lp->run($request->getDbh(), $args, $request, $basepage); $this->assertType('object', $result, 'isa PageList'); } } ?>