function testBookLoad()
 {
     $sourcePath = colesoApplication::getConfigVal('/bulldoc/source');
     $myBookLoader = new bookLoader();
     $this->assertEqual($myBookLoader->getBookSource('bulldoc_book'), $sourcePath . 'bulldoc_book/', 'Book source is correct');
     $this->assertEqual($myBookLoader->getBookTitle('bulldoc_book'), 'Bull Doc', 'Correct book title obtained');
     $this->assertEqual($myBookLoader->getBooks(), array('bulldoc_book' => array('source' => $sourcePath . 'bulldoc_book/', 'title' => 'Bull Doc', 'author' => 'Dmitry Smirnov', 'copyright' => 'H-type, 2008', 'site' => 'www.bulldoc.ru', 'bookShelfTitle' => 'Bull Doc', 'outputMode' => 'html'), 'bulldoc_chm' => array('title' => 'Bull Doc', 'rootIndexLevel' => -1, 'source' => $sourcePath . 'bulldoc_book/', 'dest' => 'bulldoc_chm', 'theme' => 'blueprint', 'outputMode' => 'chm', 'author' => 'Dmitry Smirnov', 'copyright' => 'H-type, 2008', 'site' => 'www.bulldoc.ru', 'bookShelfTitle' => 'BullDoc CHM'), 'bulldoc_site' => array('title' => 'Bull Doc', 'source' => $sourcePath . 'bulldoc_book/', 'dest' => '../../../doc', 'theme' => 'blueprint_site', 'author' => 'Dmitry Smirnov', 'copyright' => 'H-type, 2008', 'site' => 'www.bulldoc.ru', 'bookShelfTitle' => 'BullDoc for Web-Site', 'outputMode' => 'html')), 'Correct Book list obtained');
 }