Files
luos/tests/automated/gulliver/system/classpagedTableTest.php

134 lines
4.2 KiB
PHP

<?php
require_once PATH_TRUNK . 'gulliver/thirdparty/smarty/libs/Smarty.class.php';
require_once PATH_TRUNK . 'gulliver/system/class.xmlform.php';
require_once PATH_TRUNK . 'gulliver/system/class.xmlDocument.php';
require_once PATH_TRUNK . 'gulliver/system/class.pagedTable.php';
/**
* Generated by ProcessMaker Test Unit Generator on 2012-05-10 at 20:39:55.
*/
class classpagedTableTest extends PHPUnit_Framework_TestCase
{
/**
* @covers pagedTable::analizeSql
* @todo Implement testanalizeSql().
*/
public function testanalizeSql()
{
if (class_exists('pagedTable')) {
$methods = get_class_methods( 'pagedTable');
$this->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' );
}
}
}