118 lines
3.7 KiB
PHP
118 lines
3.7 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Zend Framework
|
||
|
*
|
||
|
* LICENSE
|
||
|
*
|
||
|
* This source file is subject to the new BSD license that is bundled
|
||
|
* with this package in the file LICENSE.txt.
|
||
|
* It is also available through the world-wide-web at this URL:
|
||
|
* http://framework.zend.com/license/new-bsd
|
||
|
* If you did not receive a copy of the license and are unable to
|
||
|
* obtain it through the world-wide-web, please send an email
|
||
|
* to license@zend.com so we can send you a copy immediately.
|
||
|
*
|
||
|
* @category Zend
|
||
|
* @package Zend_Ldap
|
||
|
* @subpackage UnitTests
|
||
|
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
* @version $Id: AllTests.php 17363 2009-08-03 07:40:18Z bkarwin $
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Test helper
|
||
|
*/
|
||
|
require_once dirname(dirname(dirname(dirname(__FILE__)))) . DIRECTORY_SEPARATOR . 'TestHelper.php';
|
||
|
|
||
|
if (!defined('PHPUnit_MAIN_METHOD')) {
|
||
|
define('PHPUnit_MAIN_METHOD', 'Zend_Ldap_Node_AllTests::main');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @category Zend
|
||
|
* @package Zend_Ldap
|
||
|
* @subpackage UnitTests
|
||
|
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
* @group Zend_Ldap
|
||
|
* @group Zend_Ldap_Node
|
||
|
*/
|
||
|
class Zend_Ldap_Node_AllTests
|
||
|
{
|
||
|
public static function main()
|
||
|
{
|
||
|
PHPUnit_TextUI_TestRunner::run(self::suite());
|
||
|
}
|
||
|
|
||
|
public static function suite()
|
||
|
{
|
||
|
$suite = new PHPUnit_Framework_TestSuite('Zend Framework - Zend_Ldap_Node');
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Ldap_Node_OfflineTest
|
||
|
*/
|
||
|
require_once 'Zend/Ldap/Node/OfflineTest.php';
|
||
|
$suite->addTestSuite('Zend_Ldap_Node_OfflineTest');
|
||
|
/**
|
||
|
* @see Zend_Ldap_Node_AttributeIterationTest
|
||
|
*/
|
||
|
require_once 'Zend/Ldap/Node/AttributeIterationTest.php';
|
||
|
$suite->addTestSuite('Zend_Ldap_Node_AttributeIterationTest');
|
||
|
|
||
|
if (defined('TESTS_ZEND_LDAP_ONLINE_ENABLED')
|
||
|
&& constant('TESTS_ZEND_LDAP_ONLINE_ENABLED')) {
|
||
|
/**
|
||
|
* @see Zend_Ldap_Node_OnlineTest
|
||
|
*/
|
||
|
require_once 'Zend/Ldap/Node/OnlineTest.php';
|
||
|
$suite->addTestSuite('Zend_Ldap_Node_OnlineTest');
|
||
|
/**
|
||
|
* @see Zend_Ldap_Node_ChildrenTest
|
||
|
*/
|
||
|
require_once 'Zend/Ldap/Node/ChildrenTest.php';
|
||
|
$suite->addTestSuite('Zend_Ldap_Node_ChildrenTest');
|
||
|
/**
|
||
|
* @see Zend_Ldap_Node_ChildrenIterationTest
|
||
|
*/
|
||
|
require_once 'Zend/Ldap/Node/ChildrenIterationTest.php';
|
||
|
$suite->addTestSuite('Zend_Ldap_Node_ChildrenIterationTest');
|
||
|
/**
|
||
|
* @see Zend_Ldap_Node_UpdateTest
|
||
|
*/
|
||
|
require_once 'Zend/Ldap/Node/UpdateTest.php';
|
||
|
$suite->addTestSuite('Zend_Ldap_Node_UpdateTest');
|
||
|
/**
|
||
|
* @see Zend_Ldap_Node_RootDseTest
|
||
|
*/
|
||
|
require_once 'Zend/Ldap/Node/RootDseTest.php';
|
||
|
$suite->addTestSuite('Zend_Ldap_Node_RootDseTest');
|
||
|
/**
|
||
|
* @see Zend_Ldap_Node_SchemaTest
|
||
|
*/
|
||
|
require_once 'Zend/Ldap/Node/SchemaTest.php';
|
||
|
$suite->addTestSuite('Zend_Ldap_Node_SchemaTest');
|
||
|
} else {
|
||
|
$suite->addTest(new Zend_Ldap_Node_SkipOnlineTests());
|
||
|
}
|
||
|
|
||
|
return $suite;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class Zend_Ldap_Node_SkipOnlineTests extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->markTestSkipped('Zend_Ldap_Node online tests not enabled in TestConfiguration.php');
|
||
|
}
|
||
|
|
||
|
public function testNothing()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (PHPUnit_MAIN_METHOD == 'Zend_Ldap_Node_AllTests::main') {
|
||
|
Zend_Ldap_Node_AllTests::main();
|
||
|
}
|