⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.72
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
tests
/
View File Name :
Tests_Net_DNS2_AllTests.php
. All rights reserved. * * See LICENSE for more details. * * @category Networking * @package Net_DNS2 * @author Mike Pultz
* @copyright 2020 Mike Pultz
* @license http://www.opensource.org/licenses/bsd-license.php BSD License * @link https://netdns2.com/ * @since File available since Release 1.0.0 * */ error_reporting(E_ALL | E_STRICT); if (!defined('PHPUNIT_MAIN_METHOD')) { define('PHPUNIT_MAIN_METHOD', 'Tests_Net_DNS2_AllTests::main'); } require_once 'Tests_Net_DNS2_ParserTest.php'; require_once 'Tests_Net_DNS2_ResolverTest.php'; require_once 'Tests_Net_DNS2_DNSSECTest.php'; set_include_path('..:.'); /** * This test suite assumes that Net_DNS2 will be in the include path, otherwise it * will fail. There's no other way to hardcode a include_path in here that would * make it work everywhere. * */ class Tests_Net_DNS2_AllTests { /** * the main runner * * @return void * @access public * */ public static function main() { PHPUnit_TextUI_TestRunner::run(self::suite()); } /** * test suite * * @return void * @access public * */ public static function suite() { $suite = new PHPUnit_Framework_TestSuite('PEAR - Net_DNS2'); $suite->addTestSuite('Tests_Net_DNS2_ParserTest'); $suite->addTestSuite('Tests_Net_DNS2_ResolverTest'); $suite->addTestSuite('Tests_Net_DNS2_DNSSECTest'); return $suite; } } if (PHPUNIT_MAIN_METHOD == 'Tests_Net_DNS2_AllTests::main') { Tests_Net_DNS2_AllTests::main(); }