@@ -22,7 +22,7 @@ |
||
22 | 22 | if ($success) { |
23 | 23 | return; |
24 | 24 | } |
25 | - echo "Test $this->taskCount failed. $text\n"; |
|
25 | + echo "test $this->taskCount failed. $text\n"; |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | return $this->taskCount; |
51 | 51 | } |
52 | 52 | |
53 | - protected function showStringOrArray(string|array $variable): string |
|
53 | + protected function showStringOrArray(string | array $variable): string |
|
54 | 54 | { |
55 | 55 | return (is_string($variable) ? "'$variable'" : var_export($variable, true)); |
56 | 56 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | /** |
92 | 92 | * Is $actual greater than $expected? |
93 | 93 | */ |
94 | - protected function assertGreaterThan(int|float $expected, int|float $actual): void |
|
94 | + protected function assertGreaterThan(int | float $expected, int | float $actual): void |
|
95 | 95 | { |
96 | 96 | $success = ($actual > $expected); |
97 | 97 | $message = ($success) ? "" : "$actual is not greater than $expected."; |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | /** |
102 | 102 | * Is $actual less than $expected? |
103 | 103 | */ |
104 | - protected function assertLessThan(int|float $expected, int|float $actual): void |
|
104 | + protected function assertLessThan(int | float $expected, int | float $actual): void |
|
105 | 105 | { |
106 | 106 | $success = ($actual < $expected); |
107 | 107 | $message = ($success) ? "" : "$actual is not less than $expected."; |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | /** |
172 | 172 | * Does $actual contain $needle? |
173 | 173 | */ |
174 | - protected function assertContains(string|array $needle, string|array $actual): void |
|
174 | + protected function assertContains(string | array $needle, string | array $actual): void |
|
175 | 175 | { |
176 | 176 | if (is_string($actual) && is_string($needle)) { |
177 | 177 | $success = ($needle !== "" && str_contains($actual, $needle)); |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | /** |
190 | 190 | * Does $actual not contain $needle? |
191 | 191 | */ |
192 | - protected function assertNotContains(string|array $needle, string|array $actual): void |
|
192 | + protected function assertNotContains(string | array $needle, string | array $actual): void |
|
193 | 193 | { |
194 | 194 | if (is_string($actual) && is_string($needle)) { |
195 | 195 | $success = ($needle === "" || !str_contains($actual, $needle)); |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | /** |
208 | 208 | * Does $value contain $count items? |
209 | 209 | */ |
210 | - protected function assertCount(int $count, array|\Countable $value): void |
|
210 | + protected function assertCount(int $count, array | \Countable $value): void |
|
211 | 211 | { |
212 | 212 | $actual = count($value); |
213 | 213 | $success = ($actual === $count); |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | /** |
219 | 219 | * Does $value not contain $count items? |
220 | 220 | */ |
221 | - protected function assertNotCount(int $count, array|\Countable $value): void |
|
221 | + protected function assertNotCount(int $count, array | \Countable $value): void |
|
222 | 222 | { |
223 | 223 | $actual = count($value); |
224 | 224 | $success = ($actual !== $count); |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | /** |
230 | 230 | * Is $value of type $type? |
231 | 231 | */ |
232 | - protected function assertType(string|object $type, mixed $value): void |
|
232 | + protected function assertType(string | object $type, mixed $value): void |
|
233 | 233 | { |
234 | 234 | if ( |
235 | 235 | in_array($type, [ |
@@ -42,15 +42,15 @@ |
||
42 | 42 | try { |
43 | 43 | $reflection = new ReflectionMethod($class, $dataProvider); |
44 | 44 | if (!$reflection->isPublic()) { |
45 | - throw new InvalidDataProviderException("Method $className::$dataProvider is not public."); |
|
45 | + throw new InvalidDataProviderException("method $className::$dataProvider is not public."); |
|
46 | 46 | } |
47 | 47 | $result = call_user_func([$class, $dataProvider]); |
48 | 48 | if (!is_array($result)) { |
49 | - throw new InvalidDataProviderException("Method $className::$dataProvider has to return an array."); |
|
49 | + throw new InvalidDataProviderException("method $className::$dataProvider has to return an array."); |
|
50 | 50 | } |
51 | 51 | return $result; |
52 | 52 | } catch (\ReflectionException $e) { |
53 | - throw new InvalidDataProviderException("Method $className::$dataProvider does not exist.", 0, $e); |
|
53 | + throw new InvalidDataProviderException("method $className::$dataProvider does not exist.", 0, $e); |
|
54 | 54 | } |
55 | 55 | } |
56 | 56 | return []; |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | $this->engines[] = $engine; |
23 | 23 | } |
24 | 24 | |
25 | - public function hasAnnotation(string $name, string|object $class, string $method = null): bool |
|
25 | + public function hasAnnotation(string $name, string | object $class, string $method = null): bool |
|
26 | 26 | { |
27 | 27 | foreach ($this->engines as $engine) { |
28 | 28 | if ($engine->hasAnnotation($name, $class, $method)) { |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | return false; |
33 | 33 | } |
34 | 34 | |
35 | - public function getAnnotation(string $name, string|object $class, string $method = null): mixed |
|
35 | + public function getAnnotation(string $name, string | object $class, string $method = null): mixed |
|
36 | 36 | { |
37 | 37 | foreach ($this->engines as $engine) { |
38 | 38 | $value = $engine->getAnnotation($name, $class, $method); |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | * @param class-string|object $class |
23 | 23 | * @throws ReflectionException |
24 | 24 | */ |
25 | - public function hasAnnotation(string $name, string|object $class, string $method = null): bool |
|
25 | + public function hasAnnotation(string $name, string | object $class, string $method = null): bool |
|
26 | 26 | { |
27 | 27 | return count($this->getReflection($class, $method)->getAttributes($this->getClassName($name))) > 0; |
28 | 28 | } |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @param class-string|object $class |
32 | 32 | * @throws ReflectionException |
33 | 33 | */ |
34 | - public function getAnnotation(string $name, string|object $class, string $method = null): mixed |
|
34 | + public function getAnnotation(string $name, string | object $class, string $method = null): mixed |
|
35 | 35 | { |
36 | 36 | $attributes = $this->getReflection($class, $method)->getAttributes($this->getClassName($name)); |
37 | 37 | if (count($attributes) === 0) { |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * @param class-string|object $class |
52 | 52 | * @throws ReflectionException |
53 | 53 | */ |
54 | - private function getReflection(string|object $class, string $method = null): ReflectionClass|ReflectionMethod |
|
54 | + private function getReflection(string | object $class, string $method = null): ReflectionClass | ReflectionMethod |
|
55 | 55 | { |
56 | 56 | if ($method !== null) { |
57 | 57 | $reflection = new ReflectionMethod(is_object($class) ? get_class($class) : $class, $method); |
@@ -25,9 +25,9 @@ |
||
25 | 25 | $this->suites = $suites; |
26 | 26 | } |
27 | 27 | |
28 | - /** |
|
29 | - * @param class-string $className |
|
30 | - */ |
|
28 | + /** |
|
29 | + * @param class-string $className |
|
30 | + */ |
|
31 | 31 | public function create(string $className): TestCase |
32 | 32 | { |
33 | 33 | foreach ($this->suites as $suite) { |
@@ -28,6 +28,6 @@ |
||
28 | 28 | if ($this->reason) { |
29 | 29 | $reason = ": $this->reason"; |
30 | 30 | } |
31 | - return "Skipped $this->name$reason\n"; |
|
31 | + return "skipped $this->name$reason\n"; |
|
32 | 32 | } |
33 | 33 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | |
14 | 14 | $cmd = new Parser("", [ |
15 | 15 | "path" => [ |
16 | - Parser::Default => $vendorDirectory . "/../tests", |
|
16 | + Parser::default => $vendorDirectory . "/../tests", |
|
17 | 17 | ], |
18 | 18 | "--colors" => [ |
19 | 19 | Parser::Optional => true, |
@@ -49,7 +49,7 @@ |
||
49 | 49 | /** |
50 | 50 | * Check whether to skip a test method |
51 | 51 | */ |
52 | - public function shouldSkip(string $class, string $method): bool|string |
|
52 | + public function shouldSkip(string $class, string $method): bool | string |
|
53 | 53 | { |
54 | 54 | $value = $this->getSkipValue($class, $method); |
55 | 55 | if (is_scalar($value)) { |
@@ -137,7 +137,8 @@ |
||
137 | 137 | foreach ($files as $name => $file) { |
138 | 138 | try { |
139 | 139 | FileSystem::delete($name); |
140 | - } catch (IOException) { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement |
|
140 | + } catch (IOException) { |
|
141 | +// phpcs:ignore Generic.CodeAnalysis.EmptyStatement |
|
141 | 142 | } |
142 | 143 | } |
143 | 144 | } |