more test functions
This commit is contained in:
parent
9eb3675251
commit
a9125cacd5
|
@ -509,8 +509,14 @@ class PageTest extends PHPUnit_Framework_TestCase
|
|||
$this->assertCount (15, $currentPage->entryArray);
|
||||
$this->assertEquals ("La curée", $currentPage->entryArray [0]->title);
|
||||
$this->assertTrue ($currentPage->ContainsBook ());
|
||||
}
|
||||
|
||||
// Test facets
|
||||
public function testPageRecent_WithFacets_IncludedTag ()
|
||||
{
|
||||
$page = Base::PAGE_ALL_RECENT_BOOKS;
|
||||
$query = NULL;
|
||||
$qid = NULL;
|
||||
$n = "1";
|
||||
|
||||
$_GET["tag"] = "Historical";
|
||||
$currentPage = Page::getPage ($page, $qid, $query, $n);
|
||||
|
@ -521,6 +527,16 @@ class PageTest extends PHPUnit_Framework_TestCase
|
|||
$this->assertEquals ("Twenty Years After", $currentPage->entryArray [0]->title);
|
||||
$this->assertTrue ($currentPage->ContainsBook ());
|
||||
|
||||
$_GET["tag"] = NULL;
|
||||
}
|
||||
|
||||
public function testPageRecent_WithFacets_ExcludedTag ()
|
||||
{
|
||||
$page = Base::PAGE_ALL_RECENT_BOOKS;
|
||||
$query = NULL;
|
||||
$qid = NULL;
|
||||
$n = "1";
|
||||
|
||||
$_GET["tag"] = "!Romance";
|
||||
$currentPage = Page::getPage ($page, $qid, $query, $n);
|
||||
$currentPage->InitializeContent ();
|
||||
|
|
Loading…
Reference in a new issue