Files
luos/tests/gulliver/system/GTest.php
Brayan Osmar Pereyra Suxo fcfac3f77c BUG 0000 fix test/bootstrap.php
php5.2 and test for first method of Gtest ready
2012-05-09 17:22:42 -04:00

1620 lines
41 KiB
PHP

<?php
require_once PATH_TRUNK . 'gulliver' . PATH_SEP . "system" . PATH_SEP . "class.g.php";
/**
* Generated by PHPUnit_SkeletonGenerator on 2012-05-09 at 10:14:57.
*/
class GTest extends PHPUnit_Framework_TestCase
{
/**
* @covers G::is_https
* @todo Implement testIs_https().
*/
public function testIs_https()
{
$this->assertFalse(G::is_https());
$_SERVER̈́['HTTPS'] = '';
$this->assertFalse(G::is_https());
$_SERVER['HTTPS'] = 'on';
$this->assertTrue(G::is_https());
}
/**
* @covers G::array_fill_value
* @todo Implement testArray_fill_value().
*/
public function testArray_fill_value()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::generate_password
* @todo Implement testGenerate_password().
*/
public function testGenerate_password()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::array_concat
* @todo Implement testArray_concat().
*/
public function testArray_concat()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::var_compare
* @todo Implement testVar_compare().
*/
public function testVar_compare()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::var_probe
* @todo Implement testVar_probe().
*/
public function testVar_probe()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getVersion
* @todo Implement testGetVersion().
*/
public function testGetVersion()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getIpAddress
* @todo Implement testGetIpAddress().
*/
public function testGetIpAddress()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getMacAddress
* @todo Implement testGetMacAddress().
*/
public function testGetMacAddress()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::microtime_float
* @todo Implement testMicrotime_float().
*/
public function testMicrotime_float()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::setFatalErrorHandler
* @todo Implement testSetFatalErrorHandler().
*/
public function testSetFatalErrorHandler()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::setErrorHandler
* @todo Implement testSetErrorHandler().
*/
public function testSetErrorHandler()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::fatalErrorHandler
* @todo Implement testFatalErrorHandler().
*/
public function testFatalErrorHandler()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::customErrorHandler
* @todo Implement testCustomErrorHandler().
*/
public function testCustomErrorHandler()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::showErrorSource
* @todo Implement testShowErrorSource().
*/
public function testShowErrorSource()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::customErrorLog
* @todo Implement testCustomErrorLog().
*/
public function testCustomErrorLog()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::verboseError
* @todo Implement testVerboseError().
*/
public function testVerboseError()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::encrypt
* @todo Implement testEncrypt().
*/
public function testEncrypt()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::decrypt
* @todo Implement testDecrypt().
*/
public function testDecrypt()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::lookup
* @todo Implement testLookup().
*/
public function testLookup()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::mk_dir
* @todo Implement testMk_dir().
*/
public function testMk_dir()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::rm_dir
* @todo Implement testRm_dir().
*/
public function testRm_dir()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::verifyPath
* @todo Implement testVerifyPath().
*/
public function testVerifyPath()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::expandPath
* @todo Implement testExpandPath().
*/
public function testExpandPath()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadSystem
* @todo Implement testLoadSystem().
*/
public function testLoadSystem()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadSystemExist
* @todo Implement testLoadSystemExist().
*/
public function testLoadSystemExist()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::RenderPage
* @todo Implement testRenderPage().
*/
public function testRenderPage()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadSkin
* @todo Implement testLoadSkin().
*/
public function testLoadSkin()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadInclude
* @todo Implement testLoadInclude().
*/
public function testLoadInclude()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadAllModelClasses
* @todo Implement testLoadAllModelClasses().
*/
public function testLoadAllModelClasses()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadAllPluginModelClasses
* @todo Implement testLoadAllPluginModelClasses().
*/
public function testLoadAllPluginModelClasses()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadTemplate
* @todo Implement testLoadTemplate().
*/
public function testLoadTemplate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadClassRBAC
* @todo Implement testLoadClassRBAC().
*/
public function testLoadClassRBAC()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadClass
* @todo Implement testLoadClass().
*/
public function testLoadClass()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadThirdParty
* @todo Implement testLoadThirdParty().
*/
public function testLoadThirdParty()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::encryptlink
* @todo Implement testEncryptlink().
*/
public function testEncryptlink()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::parseURI
* @todo Implement testParseURI().
*/
public function testParseURI()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::strip_slashes
* @todo Implement testStrip_slashes().
*/
public function testStrip_slashes()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::logTimeByPage
* @todo Implement testLogTimeByPage().
*/
public function testLogTimeByPage()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::streamCSSBigFile
* @todo Implement testStreamCSSBigFile().
*/
public function testStreamCSSBigFile()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::streamJSTranslationFile
* @todo Implement testStreamJSTranslationFile().
*/
public function testStreamJSTranslationFile()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::streamFile
* @todo Implement testStreamFile().
*/
public function testStreamFile()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::trimSourceCodeFile
* @todo Implement testTrimSourceCodeFile().
*/
public function testTrimSourceCodeFile()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::sendHeaders
* @todo Implement testSendHeaders().
*/
public function testSendHeaders()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::virtualURI
* @todo Implement testVirtualURI().
*/
public function testVirtualURI()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::createUID
* @todo Implement testCreateUID().
*/
public function testCreateUID()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getUIDName
* @todo Implement testGetUIDName().
*/
public function testGetUIDName()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::formatNumber
* @todo Implement testFormatNumber().
*/
public function testFormatNumber()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::formatDate
* @todo Implement testFormatDate().
*/
public function testFormatDate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getformatedDate
* @todo Implement testGetformatedDate().
*/
public function testGetformatedDate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::arrayDiff
* @todo Implement testArrayDiff().
*/
public function testArrayDiff()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::complete_field
* @todo Implement testComplete_field().
*/
public function testComplete_field()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::sqlEscape
* @todo Implement testSqlEscape().
*/
public function testSqlEscape()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::MySQLSintaxis
* @todo Implement testMySQLSintaxis().
*/
public function testMySQLSintaxis()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::replaceDataField
* @todo Implement testReplaceDataField().
*/
public function testReplaceDataField()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::loadLanguageFile
* @todo Implement testLoadLanguageFile().
*/
public function testLoadLanguageFile()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::registerLabel
* @todo Implement testRegisterLabel().
*/
public function testRegisterLabel()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadMenuXml
* @todo Implement testLoadMenuXml().
*/
public function testLoadMenuXml()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::SendMessageXml
* @todo Implement testSendMessageXml().
*/
public function testSendMessageXml()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::SendTemporalMessage
* @todo Implement testSendTemporalMessage().
*/
public function testSendTemporalMessage()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::SendMessage
* @todo Implement testSendMessage().
*/
public function testSendMessage()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::SendMessageText
* @todo Implement testSendMessageText().
*/
public function testSendMessageText()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadMessage
* @todo Implement testLoadMessage().
*/
public function testLoadMessage()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadXmlLabel
* @todo Implement testLoadXmlLabel().
*/
public function testLoadXmlLabel()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadMessageXml
* @todo Implement testLoadMessageXml().
*/
public function testLoadMessageXml()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadTranslationObject
* @todo Implement testLoadTranslationObject().
*/
public function testLoadTranslationObject()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadTranslation
* @todo Implement testLoadTranslation().
*/
public function testLoadTranslation()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getTranslations
* @todo Implement testGetTranslations().
*/
public function testGetTranslations()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::LoadArrayFile
* @todo Implement testLoadArrayFile().
*/
public function testLoadArrayFile()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::expandUri
* @todo Implement testExpandUri().
*/
public function testExpandUri()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::genericForceLogin
* @todo Implement testGenericForceLogin().
*/
public function testGenericForceLogin()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::capitalize
* @todo Implement testCapitalize().
*/
public function testCapitalize()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::toUpper
* @todo Implement testToUpper().
*/
public function testToUpper()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::toLower
* @todo Implement testToLower().
*/
public function testToLower()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::http_build_query
* @todo Implement testHttp_build_query().
*/
public function testHttp_build_query()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::header
* @todo Implement testHeader().
*/
public function testHeader()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::forceLogin
* @todo Implement testForceLogin().
*/
public function testForceLogin()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::add_slashes
* @todo Implement testAdd_slashes().
*/
public function testAdd_slashes()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::uploadFile
* @todo Implement testUploadFile().
*/
public function testUploadFile()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::resizeImage
* @todo Implement testResizeImage().
*/
public function testResizeImage()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::array_merges
* @todo Implement testArray_merges().
*/
public function testArray_merges()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::array_merge_2
* @todo Implement testArray_merge_2().
*/
public function testArray_merge_2()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::generateUniqueID
* @todo Implement testGenerateUniqueID().
*/
public function testGenerateUniqueID()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::generateCode
* @todo Implement testGenerateCode().
*/
public function testGenerateCode()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::verifyUniqueID
* @todo Implement testVerifyUniqueID().
*/
public function testVerifyUniqueID()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::is_utf8
* @todo Implement testIs_utf8().
*/
public function testIs_utf8()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::CurDate
* @todo Implement testCurDate().
*/
public function testCurDate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getSystemConstants
* @todo Implement testGetSystemConstants().
*/
public function testGetSystemConstants()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::capitalizeWords
* @todo Implement testCapitalizeWords().
*/
public function testCapitalizeWords()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::unhtmlentities
* @todo Implement testUnhtmlentities().
*/
public function testUnhtmlentities()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::xmlParser
* @todo Implement testXmlParser().
*/
public function testXmlParser()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::_del_p
* @todo Implement test_del_p().
*/
public function test_del_p()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::ary2xml
* @todo Implement testAry2xml().
*/
public function testAry2xml()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::ins2ary
* @todo Implement testIns2ary().
*/
public function testIns2ary()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::evalJScript
* @todo Implement testEvalJScript().
*/
public function testEvalJScript()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::inflect
* @todo Implement testInflect().
*/
public function testInflect()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::pr
* @todo Implement testPr().
*/
public function testPr()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::dump
* @todo Implement testDump().
*/
public function testDump()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::stripCDATA
* @todo Implement testStripCDATA().
*/
public function testStripCDATA()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::sys_get_temp_dir
* @todo Implement testSys_get_temp_dir().
*/
public function testSys_get_temp_dir()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::PMWSCompositeResponse
* @todo Implement testPMWSCompositeResponse().
*/
public function testPMWSCompositeResponse()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::emailAddress
* @todo Implement testEmailAddress().
*/
public function testEmailAddress()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::json_encode
* @todo Implement testJson_encode().
*/
public function testJson_encode()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::json_decode
* @todo Implement testJson_decode().
*/
public function testJson_decode()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::isHttpRequest
* @todo Implement testIsHttpRequest().
*/
public function testIsHttpRequest()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::sendMail
* @todo Implement testSendMail().
*/
public function testSendMail()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::envelopEmailAddresses
* @todo Implement testEnvelopEmailAddresses().
*/
public function testEnvelopEmailAddresses()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::gettype
* @todo Implement testGettype().
*/
public function testGettype()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::removeComments
* @todo Implement testRemoveComments().
*/
public function testRemoveComments()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getMemoryUsage
* @todo Implement testGetMemoryUsage().
*/
public function testGetMemoryUsage()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getFormatUserList
* @todo Implement testGetFormatUserList().
*/
public function testGetFormatUserList()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getModel
* @todo Implement testGetModel().
*/
public function testGetModel()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::is_rwritable
* @todo Implement testIs_rwritable().
*/
public function testIs_rwritable()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::rglob
* @todo Implement testRglob().
*/
public function testRglob()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::browser_detection
* @todo Implement testBrowser_detection().
*/
public function testBrowser_detection()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::get_os_data
* @todo Implement testGet_os_data().
*/
public function testGet_os_data()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::get_item_version
* @todo Implement testGet_item_version().
*/
public function testGet_item_version()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::get_set_count
* @todo Implement testGet_set_count().
*/
public function testGet_set_count()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::check_is_mobile
* @todo Implement testCheck_is_mobile().
*/
public function testCheck_is_mobile()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::get_mobile_data
* @todo Implement testGet_mobile_data().
*/
public function testGet_mobile_data()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getBrowser
* @todo Implement testGetBrowser().
*/
public function testGetBrowser()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::script_time
* @todo Implement testScript_time().
*/
public function testScript_time()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getDirectorySize
* @todo Implement testGetDirectorySize().
*/
public function testGetDirectorySize()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getCacheFileNameByPattern
* @todo Implement testGetCacheFileNameByPattern().
*/
public function testGetCacheFileNameByPattern()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::getCheckSum
* @todo Implement testGetCheckSum().
*/
public function testGetCheckSum()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::parse_ini_string
* @todo Implement testParse_ini_string().
*/
public function testParse_ini_string()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::disableEnableINIvariable
* @todo Implement testDisableEnableINIvariable().
*/
public function testDisableEnableINIvariable()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::setINIvariable
* @todo Implement testSetINIvariable().
*/
public function testSetINIvariable()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::write_php_ini
* @todo Implement testWrite_php_ini().
*/
public function testWrite_php_ini()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::verifyWriteAccess
* @todo Implement testVerifyWriteAccess().
*/
public function testVerifyWriteAccess()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::renderTemplate
* @todo Implement testRenderTemplate().
*/
public function testRenderTemplate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::parseTemplate
* @todo Implement testParseTemplate().
*/
public function testParseTemplate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::update_php_ini
* @todo Implement testUpdate_php_ini().
*/
public function testUpdate_php_ini()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers G::is_writable_r
* @todo Implement testIs_writable_r().
*/
public function testIs_writable_r()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}