/PHP-7.0/scripts/dev/generate-phpt/src/testcase/ |
H A D | gtTestCase.php | 22 protected $testCase; variable in gtTestCase 54 return $this->testCase; 102 $this->testCase = gtCodeSnippet::appendBlankLines(2, $this->testCase ); 125 $this->testCase = gtCodeSnippet::appendBlankLines(2, $this->testCase ); 138 $this->testCase = gtCodeSnippet::appendBlankLines(2, $this->testCase ); 147 $this->testCase[] = "?>"; 162 $this->testCase = gtCodeSnippet::append('skipifwin', $this->testCase); 165 $this->testCase = gtCodeSnippet::append('skipifnotwin', $this->testCase); 169 $this->testCase = gtCodeSnippet::append('skipif64b', $this->testCase); 173 $this->testCase = gtCodeSnippet::append('skipifnot64b', $this->testCase); [all …]
|
H A D | gtErrorTestCaseFunction.php | 40 $this->testCase[] = "--TEST--"; 41 …$this->testCase[] = "Test function ".$this->subject->getName()."() by calling it more than or less… 47 $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase ); 48 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );"; 51 $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase ); 52 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );"; 53 $this->testCase = gtCodeSnippet::appendBlankLines(2, $this->testCase );
|
H A D | gtVariationTestCase.php | 32 $this->testCase[] = $statements[$i]; 35 $this->testCase = gtCodeSnippet::appendBlankLines(2, $this->testCase ); 39 $this->testCase = gtCodeSnippet::append($this->variationData, $this->testCase); 40 $this->testCase = gtCodeSnippet::appendBlankLines(2, $this->testCase ); 50 …$this->testCase[] = "echo \"*** Test substituting argument ".$this->argumentNumber." with ".$this-… 51 $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase );
|
H A D | gtErrorTestCaseMethod.php | 42 $this->testCase[] = "--TEST--"; 43 …$this->testCase[] = "Test class ".$this->subject->getClassName()." method ".$this->subject->getNam… 50 $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase ); 51 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );"; 54 $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase ); 55 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );";
|
H A D | gtVariationTestCaseFunction.php | 10 protected $testCase; variable in gtVariationTestCaseFunction 45 $this->testCase[] = "--TEST--"; 46 …$this->testCase[] = "Test function ".$this->subject->getName()."() by substituting argument ".$thi… 51 $this->testCase = gtCodeSnippet::append('loopStart', $this->testCase); 59 $this->testCase[] = " var_dump(".$this->subject->getName()."( ".$list." ) );"; 60 $this->testCase = gtCodeSnippet::append('loopClose', $this->testCase);
|
H A D | gtBasicTestCaseFunction.php | 41 $this->testCase[] = "--TEST--"; 42 …$this->testCase[] = "Test function ".$this->subject->getName()."() by calling it with its expected… 55 $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase ); 56 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );"; 58 $this->testCase = gtCodeSnippet::appendBlankLines(2, $this->testCase );
|
H A D | gtBasicTestCaseMethod.php | 36 $this->testCase[] = "--TEST--"; 37 …$this->testCase[] = "Test class ".$this->subject->getClassName()." method ".$this->subject->getNa… 45 $this->testCase[] = "var_dump( \$class->".$this->subject->getName()."( ".$list." ) );"; 46 $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase ); 48 $this->testCase = gtCodeSnippet::appendBlankLines(2, $this->testCase );
|
H A D | gtVariationTestCaseMethod.php | 11 protected $testCase; variable in gtVariationTestCaseMethod 49 $this->testCase[] = "--TEST--"; 50 …$this->testCase[] = "Test class ".$this->subject->getClassName()." method ".$this->subject->getNam… 54 $this->testCase = gtCodeSnippet::append('loopStart', $this->testCase); 61 $this->testCase[] = " var_dump(\$class->".$this->subject->getName()."( ".$list." ) );"; 62 $this->testCase = gtCodeSnippet::append('loopClose', $this->testCase);
|
H A D | gtErrorTestCase.php | 42 $this->testCase[] = "\$extra_arg = "; 48 …$this->testCase[] = "echo \"*** Test by calling method or function with incorrect numbers of argum… 49 $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase );
|
H A D | gtVariationContainerFunction.php | 35 $testCase = gtVariationTestCase::getInstance($this->optionalSections); 36 $testCase->setUp($this->function, $i, $d); 37 $testCase->constructTestCase(); 38 $this->variationTests[] = $testCase->toString();
|
H A D | gtVariationContainerMethod.php | 37 $testCase = gtVariationTestCase::getInstance($this->optionalSections, 'method'); 38 $testCase->setUp($this->method, $i, $d); 39 $testCase->constructTestCase(); 40 $this->variationTests[] = $testCase->toString();
|
H A D | gtBasicTestCase.php | 33 …$this->testCase[] = "echo \"*** Test by calling method or function with its expected arguments ***… 34 $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase );
|
/PHP-7.0/scripts/dev/generate-phpt/src/ |
H A D | generate-phpt.php | 69 $testCase = gtBasicTestCase::getInstance($optionalSections, 'method'); variable 70 $testCase->setMethod($method); 72 $testCase = gtBasicTestCase::getInstance($optionalSections); variable 73 $testCase->setFunction($function); 76 $testCase->constructTestCase(); 77 gtTestCaseWriter::write($name, $testCase->toString(), 'b'); 83 $testCase->setMethod($method); 85 $testCase = gtErrorTestCase::getInstance($optionalSections); variable 86 $testCase->setFunction($function); 89 $testCase->constructTestCase(); [all …]
|
/PHP-7.0/scripts/dev/ |
H A D | generate-phpt.phar | 1348 $this->testCase = gtCodeSnippet::appendBlankLines(1, $this->testCase ); 1373 protected $testCase; 1453 $this->testCase = gtCodeSnippet::appendBlankLines(2, $this->testCase ); 1476 $this->testCase = gtCodeSnippet::appendBlankLines(2, $this->testCase ); 1489 $this->testCase = gtCodeSnippet::appendBlankLines(2, $this->testCase ); 1707 protected $testCase; 1748 $this->testCase = gtCodeSnippet::append('loopStart', $this->testCase); 1757 $this->testCase = gtCodeSnippet::append('loopClose', $this->testCase); 2014 protected $testCase; 2057 $this->testCase = gtCodeSnippet::append('loopStart', $this->testCase); [all …]
|
/PHP-7.0/ext/phar/tests/tar/ |
H A D | bug49910.phpt | 47 [27] => phar://*/Structures_Graph-1.0.3/tests/testCase/BasicGraph.php
|