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/Crypt/AllTests.php

70 lines
2.1 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_Crypt
* @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 16225 2009-06-21 20:34:55Z thomas $
*/
if (!defined('PHPUnit_MAIN_METHOD')) {
define('PHPUnit_MAIN_METHOD', 'Zend_Crypt_AllTests::main');
}
require_once dirname(dirname(dirname(__FILE__))) . DIRECTORY_SEPARATOR . 'TestHelper.php';
require_once 'PHPUnit/Framework/TestSuite.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
require_once 'DiffieHellmanTest.php';
require_once 'HmacTest.php';
require_once 'MathTest.php';
require_once 'Rsa/AllTests.php';
require_once 'Math/AllTests.php';
/**
* @category Zend
* @package Zend_Crypt
* @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_Crypt
*/
class Zend_Crypt_AllTests
{
public static function main()
{
PHPUnit_TextUI_TestRunner::run(self::suite());
}
public static function suite()
{
$suite = new PHPUnit_Framework_TestSuite('Zend Framework - Zend_Crypt');
$suite->addTestSuite('Zend_Crypt_DiffieHellmanTest');
$suite->addTestSuite('Zend_Crypt_HmacTest');
$suite->addTestSuite('Zend_Crypt_MathTest');
$suite->addTest(Zend_Crypt_Rsa_AllTests::suite());
$suite->addTest(Zend_Crypt_Math_AllTests::suite());
return $suite;
}
}
if (PHPUnit_MAIN_METHOD == 'Zend_Crypt_AllTests::main') {
Zend_Crypt_AllTests::main();
}