2017-04-06 19:11:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* App
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Nathan Gray
|
|
|
|
* @package
|
|
|
|
* @copyright (c) 2017 Nathan Gray
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace EGroupware\Api\Etemplate\Widget;
|
|
|
|
|
2017-04-13 20:21:41 +02:00
|
|
|
require_once realpath(__DIR__.'/../../test/WidgetBaseTest.php');
|
|
|
|
|
2017-04-06 19:11:58 +02:00
|
|
|
/**
|
|
|
|
* Description of TemplateTest
|
|
|
|
*
|
|
|
|
* @author nathan
|
|
|
|
*/
|
2017-04-13 20:21:41 +02:00
|
|
|
class TemplateTest extends \EGroupware\Api\Etemplate\WidgetBaseTest {
|
2017-04-06 19:11:58 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test instanciation of a template
|
|
|
|
*/
|
|
|
|
public function testInstance()
|
|
|
|
{
|
|
|
|
$this->markTestIncomplete(
|
|
|
|
'This test has not been implemented yet.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|