diff options
Diffstat (limited to 'test/KolabAdmin/Unit/BaseTest.php')
-rw-r--r-- | test/KolabAdmin/Unit/BaseTest.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/test/KolabAdmin/Unit/BaseTest.php b/test/KolabAdmin/Unit/BaseTest.php new file mode 100644 index 0000000..6cc7ea0 --- /dev/null +++ b/test/KolabAdmin/Unit/BaseTest.php @@ -0,0 +1,38 @@ +<?php +/** + * Test the webadmin code. + * + * PHP version 5 + * + * @category Kolab + * @package KolabAdmin + * @author Gunnar Wrobel <wrobel@pardus.de> + * @license http://www.fsf.org/copyleft/lgpl.html LGPL + * @link http://pear.horde.org/index.php?package=KolabAdmin + */ + +/** + * Require the tested classes. + */ +require_once dirname(__FILE__) . '/../../../php/admin/include/KolabLDAP.php'; + +/** + * Test the webadmin code. + * + * Copyright 2010 Klarälvdalens Datakonsult AB + * + * See the enclosed file COPYING for license information (LGPL). If you + * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html. + * + * @category Kolab + * @package KolabAdmin + * @author Gunnar Wrobel <wrobel@pardus.de> + * @license http://www.fsf.org/copyleft/lgpl.html LGPL + * @link http://pear.horde.org/index.php?package=KolabAdmin + */ +class KolabAdmin_Unit_BaseTest extends PHPUnit_Framework_TestCase +{ + public function testSomething() + { + } +}
\ No newline at end of file |