File tree Expand file tree Collapse file tree 1 file changed +28
-1
lines changed Expand file tree Collapse file tree 1 file changed +28
-1
lines changed Original file line number Diff line number Diff line change 21
21
*/
22
22
abstract class BaseTestRunner
23
23
{
24
+ /**
25
+ * @var int
26
+ */
24
27
public const STATUS_UNKNOWN = -1 ;
25
28
29
+ /**
30
+ * @var int
31
+ */
26
32
public const STATUS_PASSED = 0 ;
27
33
34
+ /**
35
+ * @var int
36
+ */
28
37
public const STATUS_SKIPPED = 1 ;
29
38
39
+ /**
40
+ * @var int
41
+ */
30
42
public const STATUS_INCOMPLETE = 2 ;
31
43
44
+ /**
45
+ * @var int
46
+ */
32
47
public const STATUS_FAILURE = 3 ;
33
48
49
+ /**
50
+ * @var int
51
+ */
34
52
public const STATUS_ERROR = 4 ;
35
53
54
+ /**
55
+ * @var int
56
+ */
36
57
public const STATUS_RISKY = 5 ;
37
58
59
+ /**
60
+ * @var int
61
+ */
38
62
public const STATUS_WARNING = 6 ;
39
63
64
+ /**
65
+ * @var string
66
+ */
40
67
public const SUITE_METHODNAME = 'suite ' ;
41
68
42
69
/**
@@ -52,7 +79,7 @@ public function getLoader(): TestSuiteLoader
52
79
* This is a template method, subclasses override
53
80
* the runFailed() and clearStatus() methods.
54
81
*
55
- * @param array |string $suffixes
82
+ * @param string |string[] $suffixes
56
83
*
57
84
* @throws Exception
58
85
*/
You can’t perform that action at this time.
0 commit comments