You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/tests/Zend/Locale/AllTests.php

86 lines
2.9 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_Locale
* @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 $
*/
if (!defined('PHPUnit_MAIN_METHOD')) {
define('PHPUnit_MAIN_METHOD', 'Zend_Locale_AllTests::main');
}
if (!defined('TESTS_ZEND_LOCALE_FORMAT_SETLOCALE')) {
/**
* Read in user-defined test configuration if available; otherwise, read default test configuration.
* This facilitates running "php AllTests.php" in this subdirectory or "phpunit Zend_Locale_AllTests".
*/
$_test_configuration = dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..'
. DIRECTORY_SEPARATOR . 'TestConfiguration.php';
if (is_readable($_test_configuration)) {
include_once $_test_configuration;
} else if (is_readable("$_test_configuration.dist")) {
include_once "$_test_configuration.dist";
}
}
require_once dirname(__FILE__) . '/../../TestHelper.php';
// define('TESTS_ZEND_LOCALE_BCMATH_ENABLED', false); // uncomment to disable use of bcmath extension by Zend_Date
require_once 'Zend/Locale/DataTest.php';
require_once 'Zend/Locale/FormatTest.php';
require_once 'Zend/Locale/MathTest.php';
// echo "BCMATH is ", Zend_Locale_Math::isBcmathDisabled() ? 'disabled':'not disabled', "\n";
/**
* @category Zend
* @package Zend_Locale
* @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_Locale
*/
class Zend_Locale_AllTests
{
public static function main()
{
if (defined('TESTS_ZEND_LOCALE_FORMAT_SETLOCALE') && TESTS_ZEND_LOCALE_FORMAT_SETLOCALE) {
// run all tests in a special locale
setlocale(LC_ALL, TESTS_ZEND_LOCALE_FORMAT_SETLOCALE);
}
PHPUnit_TextUI_TestRunner::run(self::suite());
}
public static function suite()
{
$suite = new PHPUnit_Framework_TestSuite('Zend Framework - Zend_Locale');
$suite->addTestSuite('Zend_Locale_DataTest');
$suite->addTestSuite('Zend_Locale_FormatTest');
$suite->addTestSuite('Zend_Locale_MathTest');
return $suite;
}
}
if (PHPUnit_MAIN_METHOD == 'Zend_Locale_AllTests::main') {
Zend_Locale_AllTests::main();
}