mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-28 10:53:39 +01:00
32 lines
553 B
PHP
32 lines
553 B
PHP
|
<?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;
|
||
|
|
||
|
/**
|
||
|
* Description of TemplateTest
|
||
|
*
|
||
|
* @author nathan
|
||
|
*/
|
||
|
class TemplateTest extends WidgetBaseTest {
|
||
|
|
||
|
/**
|
||
|
* Test instanciation of a template
|
||
|
*/
|
||
|
public function testInstance()
|
||
|
{
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
}
|