assertTrue( in_array( 'analizeSql', $methods ), 'seems like this function is outside this class' ); } } /** * @covers pagedTable::prepareQuery * @todo Implement testprepareQuery(). */ public function testprepareQuery() { if (class_exists('pagedTable')) { $methods = get_class_methods( 'pagedTable'); $this->assertTrue( in_array( 'prepareQuery', $methods ), 'seems like this function is outside this class' ); } } /** * @covers pagedTable::setupFromXmlform * @todo Implement testsetupFromXmlform(). */ public function testsetupFromXmlform() { if (class_exists('pagedTable')) { $methods = get_class_methods( 'pagedTable'); $this->assertTrue( in_array( 'setupFromXmlform', $methods ), 'seems like this function is outside this class' ); } } /** * @covers pagedTable::count * @todo Implement testcount(). */ public function testcount() { if (class_exists('pagedTable')) { $methods = get_class_methods( 'pagedTable'); $this->assertTrue( in_array( 'count', $methods ), 'seems like this function is outside this class' ); } } /** * @covers pagedTable::renderTitle * @todo Implement testrenderTitle(). */ public function testrenderTitle() { if (class_exists('pagedTable')) { $methods = get_class_methods( 'pagedTable'); $this->assertTrue( in_array( 'renderTitle', $methods ), 'seems like this function is outside this class' ); } } /** * @covers pagedTable::renderField * @todo Implement testrenderField(). */ public function testrenderField() { if (class_exists('pagedTable')) { $methods = get_class_methods( 'pagedTable'); $this->assertTrue( in_array( 'renderField', $methods ), 'seems like this function is outside this class' ); } } /** * @covers pagedTable::defaultStyle * @todo Implement testdefaultStyle(). */ public function testdefaultStyle() { if (class_exists('pagedTable')) { $methods = get_class_methods( 'pagedTable'); $this->assertTrue( in_array( 'defaultStyle', $methods ), 'seems like this function is outside this class' ); } } /** * @covers pagedTable::renderTable * @todo Implement testrenderTable(). */ public function testrenderTable() { if (class_exists('pagedTable')) { $methods = get_class_methods( 'pagedTable'); $this->assertTrue( in_array( 'renderTable', $methods ), 'seems like this function is outside this class' ); } } /** * @covers pagedTable::printForm * @todo Implement testprintForm(). */ public function testprintForm() { if (class_exists('pagedTable')) { $methods = get_class_methods( 'pagedTable'); $this->assertTrue( in_array( 'printForm', $methods ), 'seems like this function is outside this class' ); } } /** * @covers pagedTable::var_dump2 * @todo Implement testvar_dump2(). */ public function testvar_dump2() { if (class_exists('pagedTable')) { $methods = get_class_methods( 'pagedTable'); $this->assertTrue( in_array( 'var_dump2', $methods ), 'seems like this function is outside this class' ); } } }