We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3346b41 commit 1fcc580Copy full SHA for 1fcc580
src/AsyncTestCase.php
@@ -19,24 +19,20 @@ abstract class AsyncTestCase extends PHPUnitTestCase
19
20
public function setName($name)
21
{
22
- parent::setName('runAsyncTest');
23
-
+ parent::setName($name);
24
$this->realTestName = $name;
25
}
26
27
- public function getName($withDataSet = true)
+ protected function runTest()
28
29
- parent::setName($this->realTestName);
30
31
- try {
32
- return parent::getName($withDataSet);
33
- } finally {
34
35
- }
+ parent::setName('runAsyncTest');
+ return parent::runTest();
36
37
38
final public function runAsyncTest(...$args)
39
+ parent::setName($this->realTestName);
+
40
$returnValue = null;
41
42
try {
0 commit comments