Update dependency wyrihaximus/async-test-utilities to ^9.4.2 - autoclosed #374
ci.yml
on: pull_request
Continuous Integration
/
...
/
Supported Versions Matrix
6s
Continuous Integration
/
...
/
Package Name
7s
Continuous Integration
/
...
/
Check Markdown links
37s
Continuous Integration
/
...
/
Supported Threading Matrix
24s
Continuous Integration
/
...
/
Supported Checks Matrix
45s
Matrix: Continuous Integration / Continuous Integration / can-require
Continuous Integration
/
...
/
Compile the matrix
4s
Matrix: Continuous Integration / Continuous Integration / qa
Matrix: Continuous Integration / Continuous Integration / directly-on-os
Continuous Integration
/
...
/
✔️
0s
Annotations
12 errors and 20 warnings
|
Continuous Integration / Continuous Integration / Run stan on PHP 8.3 (zts) with locked dependency preference
Process completed with exit code 4.
|
|
Continuous Integration / Continuous Integration / Run unit-testing on PHP 8.3 (zts) with locked dependency preference
Process completed with exit code 4.
|
|
Continuous Integration / Continuous Integration / Run composer-require-checker on PHP 8.3 (zts) with locked dependency preference
Process completed with exit code 4.
|
|
Continuous Integration / Continuous Integration / Run backward-compatibility-check on PHP 8.3 (zts) with locked dependency preference
Process completed with exit code 4.
|
|
Continuous Integration / Continuous Integration / Run unit-testing-raw on PHP 8.4 (zts) with locked dependency preference (ubuntu-latest)
Process completed with exit code 4.
|
|
Continuous Integration / Continuous Integration / Run unit-testing-raw on PHP 8.3 (zts) with locked dependency preference (ubuntu-latest)
Process completed with exit code 4.
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with locked dependency preference
Process completed with exit code 4.
|
|
Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.3 (zts) with locked dependency preference
Process completed with exit code 4.
|
|
Continuous Integration / Continuous Integration / Run cs on PHP 8.3 (zts) with locked dependency preference
Process completed with exit code 4.
|
|
Continuous Integration / Continuous Integration / Run unit-testing-raw on PHP 8.3 (zts) with locked dependency preference (ubuntu-24.04-arm)
Process completed with exit code 4.
|
|
Continuous Integration / Continuous Integration / Run unit-testing on PHP 8.4 (zts) with locked dependency preference
Process completed with exit code 4.
|
|
Continuous Integration / Continuous Integration / Run unit-testing-raw on PHP 8.4 (zts) with locked dependency preference (ubuntu-24.04-arm)
Process completed with exit code 4.
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/AbstractPoolTest.php#L127
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
$results[$i] = $pool->run($callable, $args);
}
} finally {
- $pool->close();
+
}
foreach ($results as $result) {
self::assertSame($expectedResult, $result);
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/AbstractPoolTest.php#L123
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
$pool = $this->createPool();
try {
$results = [];
- foreach (range(0, 8) as $i) {
+ foreach (range(0, 9) as $i) {
$results[$i] = $pool->run($callable, $args);
}
} finally {
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/AbstractPoolTest.php#L123
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
$pool = $this->createPool();
try {
$results = [];
- foreach (range(0, 8) as $i) {
+ foreach (range(0, 7) as $i) {
$results[$i] = $pool->run($callable, $args);
}
} finally {
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/AbstractPoolTest.php#L123
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
$pool = $this->createPool();
try {
$results = [];
- foreach (range(0, 8) as $i) {
+ foreach (range(1, 8) as $i) {
$results[$i] = $pool->run($callable, $args);
}
} finally {
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/AbstractPoolTest.php#L123
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
$pool = $this->createPool();
try {
$results = [];
- foreach (range(0, 8) as $i) {
+ foreach (range(-1, 8) as $i) {
$results[$i] = $pool->run($callable, $args);
}
} finally {
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/AbstractPoolTest.php#L121
Escaped Mutant for Mutator "UnwrapFinally":
@@ @@
final public function fullRunThroughMultipleConsecutiveCalls(Closure $callable, array $args, mixed $expectedResult): void
{
$pool = $this->createPool();
- try {
- $results = [];
- foreach (range(0, 8) as $i) {
- $results[$i] = $pool->run($callable, $args);
- }
- } finally {
- $pool->close();
+ $results = [];
+ foreach (range(0, 8) as $i) {
+ $results[$i] = $pool->run($callable, $args);
}
+ $pool->close();
foreach ($results as $result) {
self::assertSame($expectedResult, $result);
}
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/AbstractPoolTest.php#L115
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
*/
#[Test]
#[DataProvider('provideCallablesAndTheirExpectedResults')]
- final public function fullRunThroughMultipleConsecutiveCalls(Closure $callable, array $args, mixed $expectedResult): void
+ final protected function fullRunThroughMultipleConsecutiveCalls(Closure $callable, array $args, mixed $expectedResult): void
{
$pool = $this->createPool();
try {
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/AbstractPoolTest.php#L103
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
try {
$result = $pool->run($callable, $args);
} finally {
- $pool->close();
+
}
self::assertSame($expectedResult, $result);
}
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/AbstractPoolTest.php#L100
Escaped Mutant for Mutator "UnwrapFinally":
@@ @@
final public function fullRunThrough(Closure $callable, array $args, mixed $expectedResult): void
{
$pool = $this->createPool();
- try {
- $result = $pool->run($callable, $args);
- } finally {
- $pool->close();
- }
+ $result = $pool->run($callable, $args);
+ $pool->close();
self::assertSame($expectedResult, $result);
}
/**
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/AbstractPoolTest.php#L94
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
*/
#[Test]
#[DataProvider('provideCallablesAndTheirExpectedResults')]
- final public function fullRunThrough(Closure $callable, array $args, mixed $expectedResult): void
+ final protected function fullRunThrough(Closure $callable, array $args, mixed $expectedResult): void
{
$pool = $this->createPool();
try {
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/AbstractPoolTest.php#L127
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
$results[$i] = $pool->run($callable, $args);
}
} finally {
- $pool->close();
+
}
foreach ($results as $result) {
self::assertSame($expectedResult, $result);
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/AbstractPoolTest.php#L123
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
$pool = $this->createPool();
try {
$results = [];
- foreach (range(0, 8) as $i) {
+ foreach (range(0, 9) as $i) {
$results[$i] = $pool->run($callable, $args);
}
} finally {
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/AbstractPoolTest.php#L123
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
$pool = $this->createPool();
try {
$results = [];
- foreach (range(0, 8) as $i) {
+ foreach (range(0, 7) as $i) {
$results[$i] = $pool->run($callable, $args);
}
} finally {
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/AbstractPoolTest.php#L123
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
$pool = $this->createPool();
try {
$results = [];
- foreach (range(0, 8) as $i) {
+ foreach (range(1, 8) as $i) {
$results[$i] = $pool->run($callable, $args);
}
} finally {
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/AbstractPoolTest.php#L123
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
$pool = $this->createPool();
try {
$results = [];
- foreach (range(0, 8) as $i) {
+ foreach (range(-1, 8) as $i) {
$results[$i] = $pool->run($callable, $args);
}
} finally {
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/AbstractPoolTest.php#L121
Escaped Mutant for Mutator "UnwrapFinally":
@@ @@
final public function fullRunThroughMultipleConsecutiveCalls(Closure $callable, array $args, mixed $expectedResult): void
{
$pool = $this->createPool();
- try {
- $results = [];
- foreach (range(0, 8) as $i) {
- $results[$i] = $pool->run($callable, $args);
- }
- } finally {
- $pool->close();
+ $results = [];
+ foreach (range(0, 8) as $i) {
+ $results[$i] = $pool->run($callable, $args);
}
+ $pool->close();
foreach ($results as $result) {
self::assertSame($expectedResult, $result);
}
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/AbstractPoolTest.php#L115
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
*/
#[Test]
#[DataProvider('provideCallablesAndTheirExpectedResults')]
- final public function fullRunThroughMultipleConsecutiveCalls(Closure $callable, array $args, mixed $expectedResult): void
+ final protected function fullRunThroughMultipleConsecutiveCalls(Closure $callable, array $args, mixed $expectedResult): void
{
$pool = $this->createPool();
try {
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/AbstractPoolTest.php#L103
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
try {
$result = $pool->run($callable, $args);
} finally {
- $pool->close();
+
}
self::assertSame($expectedResult, $result);
}
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/AbstractPoolTest.php#L100
Escaped Mutant for Mutator "UnwrapFinally":
@@ @@
final public function fullRunThrough(Closure $callable, array $args, mixed $expectedResult): void
{
$pool = $this->createPool();
- try {
- $result = $pool->run($callable, $args);
- } finally {
- $pool->close();
- }
+ $result = $pool->run($callable, $args);
+ $pool->close();
self::assertSame($expectedResult, $result);
}
/**
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/AbstractPoolTest.php#L94
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
*/
#[Test]
#[DataProvider('provideCallablesAndTheirExpectedResults')]
- final public function fullRunThrough(Closure $callable, array $args, mixed $expectedResult): void
+ final protected function fullRunThrough(Closure $callable, array $args, mixed $expectedResult): void
{
$pool = $this->createPool();
try {
|