Documentation is available at Test_Curl.php
- <?php
- /**
- * Skeleton Test class file for ` group
- *
- * @package PhpSecInfo
- * @author Ed Finkler <coj@funkatron.com>
- */
- /**
- * require the main PhpSecInfo class
- */
- require_once('PhpSecInfo/Test/Test.php');
- /**
- * This is a skeleton class for PhpSecInfo "Curl" tests
- * @package PhpSecInfo
- */
- class PhpSecInfo_Test_Curl extends PhpSecInfo_Test
- {
- /**
- * This value is used to group test results together.
- *
- * For example, all tests related to the mysql lib should be grouped under "mysql."
- *
- * @var string
- */
- var $test_group = 'Curl';
- /**
- * "Curl" tests should only be run if the curl extension is installed. We can check
- * for this by seeing if the function curl_init() is defined
- *
- * @return boolean
- */
- function isTestable() {
- /* if ( function_exists('curl_init') ) {
- return true;
- } else {
- return false;
- }
- */
- return extension_loaded('curl');
- }
- /**
- * Set the messages for Curl tests
- *
- */
- function _setMessages() {
- parent::_setMessages();
- $this->setMessageForResult(PHPSECINFO_TEST_RESULT_NOTRUN, 'en', "CURL support is not enabled in your PHP install");
- }
- }
Documentation generated on Mon, 26 Feb 2007 10:50:08 -0500 by phpDocumentor 1.3.0RC3