Files
luos/tests/gulliver/system/classPublisherTest.php
2012-05-10 20:51:34 -04:00

50 lines
1.6 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.publisher.php';
/**
* Generated by ProcessMaker Test Unit Generator on 2012-05-10 at 20:39:54.
*/
class classPublisherTest extends PHPUnit_Framework_TestCase
{
/**
* @covers Publisher::AddContent
* @todo Implement testAddContent().
*/
public function testAddContent()
{
if (class_exists('Publisher')) {
$methods = get_class_methods( 'Publisher');
$this->assertTrue( in_array( 'AddContent', $methods ), 'seems like this function is outside this class' );
}
}
/**
* @covers Publisher::RenderContent
* @todo Implement testRenderContent().
*/
public function testRenderContent()
{
if (class_exists('Publisher')) {
$methods = get_class_methods( 'Publisher');
$this->assertTrue( in_array( 'RenderContent', $methods ), 'seems like this function is outside this class' );
}
}
/**
* @covers Publisher::RenderContent0
* @todo Implement testRenderContent0().
*/
public function testRenderContent0()
{
if (class_exists('Publisher')) {
$methods = get_class_methods( 'Publisher');
$this->assertTrue( in_array( 'RenderContent0', $methods ), 'seems like this function is outside this class' );
}
}
}