Home
last modified time | relevance | path

Searched refs:testCase (Results 1 – 13 of 13) sorted by relevance

/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/
H A DDoubleTestCase.php4 protected $testCase; variable in DoubleTestCase
6 public function __construct(PHPUnit_Framework_TestCase $testCase) argument
8 $this->testCase = $testCase;
20 $this->testCase->runBare();
21 $this->testCase->runBare();
H A DOverrideTestCase.php4 public function testCase($arg = '') function in OverrideTestCase
H A DOneTestCase.php8 public function testCase($arg = '') function in OneTestCase
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Extensions/
H A DPhptTestCaseTest.php46 protected $testCase; variable in Extensions_PhptTestCaseTest
64 $this->testCase = null;
89 $this->testCase->run();
108 $this->testCase->run();
127 $this->testCase->run();
145 $this->testCase->run();
156 $this->testCase->run();
173 $this->testCase->run();
192 $this->testCase->run();
205 $result = $this->testCase->run();
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3TestError.php27 public $testCase; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3TestError
50 public function setTestCase($testCase) argument
52 $this->testCase = $testCase;
59 return $this->testCase;
H A DGoogleCloudDialogflowCxV3beta1TestError.php27 public $testCase; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3beta1TestError
50 public function setTestCase($testCase) argument
52 $this->testCase = $testCase;
59 return $this->testCase;
H A DGoogleCloudDialogflowCxV3TestCaseError.php44 public function setTestCase(GoogleCloudDialogflowCxV3TestCase $testCase) argument
46 $this->testCase = $testCase;
53 return $this->testCase;
H A DGoogleCloudDialogflowCxV3beta1TestCaseError.php44 public function setTestCase(GoogleCloudDialogflowCxV3beta1TestCase $testCase) argument
46 $this->testCase = $testCase;
53 return $this->testCase;
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
H A DMockBuilder.php21 private $testCase; variable in PHPUnit_Framework_MockObject_MockBuilder
89 * @param PHPUnit_Framework_TestCase $testCase
92 public function __construct(PHPUnit_Framework_TestCase $testCase, $type) argument
94 $this->testCase = $testCase;
120 $this->testCase->registerMockObject($object);
143 $this->testCase->registerMockObject($object);
166 $this->testCase->registerMockObject($object);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ToolResults/
H A DToolOutputReference.php60 public function setTestCase(TestCaseReference $testCase) argument
62 $this->testCase = $testCase;
69 return $this->testCase;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSupport/
H A DCloudsupportCase.php66 public $testCase; variable in Google\\Service\\CloudSupport\\CloudsupportCase
233 public function setTestCase($testCase) argument
235 $this->testCase = $testCase;
242 return $this->testCase;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DJUnit.php325 $testCase = $this->document->createElement('testcase');
326 $testCase->setAttribute('name', $test->getName());
335 $testCase->setAttribute('class', $class->getName());
336 $testCase->setAttribute('file', $class->getFileName());
337 $testCase->setAttribute('line', $method->getStartLine());
341 $this->currentTestCase = $testCase;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestSuite.php78 protected $testCase = false; variable in PHPUnit_Framework_TestSuite
189 $this->testCase = true;
672 if ($this->testCase === true &&
737 …if ($this->testCase === true && class_exists($this->name, false) && method_exists($this->name, $af…