egroupware_official/admin/tests/CommandBase.php

25 lines
572 B
PHP
Raw Normal View History

2018-08-28 00:00:04 +02:00
<?php
/**
* EGroupware Api: Application test base class
*
* @link http://www.stylite.de
* @package api
* @subpackage test
* @author Nathan Gray
* @copyright (c) 2016 Nathan Gray
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$
*/
require_once realpath(__DIR__.'/../../api/tests/LoggedInTest.php'); // Application test base
/**
* Base class for admin command tests
*
* Extend this class to test one command.
*/
abstract class CommandBase extends EGroupware\Api\LoggedInTest
{
// Nothing here yet
}