Skip to content

Use character array for utfstring #594

Use character array for utfstring

Use character array for utfstring #594

Triggered via pull request June 2, 2024 16:21
Status Failure
Total duration 52s
Artifacts

mutation-tests.yml

on: pull_request
Matrix: tests
Fit to window
Zoom out
Zoom in

Annotations

1 error and 3 warnings
Mutation tests with PHP 8.1
Process completed with exit code 1.
Mutation tests with PHP 8.1
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Mutation tests with PHP 8.1: src/UtfString.php#L56
Escaped Mutant for Mutator "GreaterThanOrEqualTo": --- Original +++ New @@ @@ */ public function offsetExists(mixed $offset) : bool { - return $offset >= 0 && $offset < count($this->characters); + return $offset > 0 && $offset < count($this->characters); } /** * Gets the character at given offset.
Mutation tests with PHP 8.1
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/