|
4 | 4 |
|
5 | 5 | use PHPUnit\Framework\Test;
|
6 | 6 | use PHPUnit\Framework\TestSuite;
|
7 |
| -use PHPUnit\TextUI\ResultPrinter as originalResultPrinter; |
8 | 7 | use PHPUnit\Framework\TestResult;
|
| 8 | +use PHPUnit\TextUI\DefaultResultPrinter; |
9 | 9 |
|
10 | 10 | /**
|
11 | 11 | * Class ResultPrinter
|
12 | 12 | * @package clagiordano\MarketplacesDataExport
|
13 | 13 | */
|
14 |
| -class ResultPrinter extends originalResultPrinter |
| 14 | +class ResultPrinter extends DefaultResultPrinter |
15 | 15 | {
|
16 |
| - /** @var double $executionTime */ |
17 |
| - protected $executionTime = 0.00; |
| 16 | + /** @var float $executionTime */ |
| 17 | + protected float $executionTime = 0.00; |
18 | 18 | /** @var string $testStatus */
|
19 |
| - protected $testStatus = null; |
| 19 | + protected string $testStatus = ""; |
20 | 20 | /** @var string $testName */
|
21 |
| - protected $testName = null; |
| 21 | + protected string $testName = ""; |
22 | 22 | /** @var int $suiteTestCurrent */
|
23 |
| - protected $suiteTestCurrent = 0; |
| 23 | + protected int $suiteTestCurrent = 0; |
24 | 24 | /** @var int $suiteTestTotal */
|
25 |
| - protected $suiteTestTotal = 0; |
| 25 | + protected int $suiteTestTotal = 0; |
26 | 26 | /** @var int $testTotal */
|
27 |
| - protected $testTotal = null; |
| 27 | + protected int $testTotal = 0; |
28 | 28 |
|
29 | 29 | /**
|
30 | 30 | * @param TestResult $result
|
|
0 commit comments