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

38 lines
1.2 KiB
PHP
Raw Normal View History

<?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.objectTemplate.php';
/**
* Generated by ProcessMaker Test Unit Generator on 2012-05-10 at 20:39:55.
*/
class classobjectTemplateTest extends PHPUnit_Framework_TestCase
{
/**
* @covers objectTemplate::objectTemplate
* @todo Implement testobjectTemplate().
*/
public function testobjectTemplate()
{
if (class_exists('objectTemplate')) {
$methods = get_class_methods( 'objectTemplate');
$this->assertTrue( in_array( 'objectTemplate', $methods ), 'seems like this function is outside this class' );
}
}
/**
* @covers objectTemplate::printObject
* @todo Implement testprintObject().
*/
public function testprintObject()
{
if (class_exists('objectTemplate')) {
$methods = get_class_methods( 'objectTemplate');
$this->assertTrue( in_array( 'printObject', $methods ), 'seems like this function is outside this class' );
}
}
}