From 41c9b46440099a2d3425347ec7b1fd39dd4b481a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Sun, 30 Oct 2022 13:58:46 +0100 Subject: [PATCH] Update test suite and report failed assertions --- .github/workflows/ci.yml | 22 +++++++++++++--------- composer.json | 2 +- phpunit.xml.dist | 17 +++++++++++++---- phpunit.xml.legacy | 10 +++++++++- tests/fixtures/CountableException.php | 1 + tests/fixtures/CountableNonException.php | 1 + 6 files changed, 38 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21b0c483..d2c89d7a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: jobs: PHPUnit: name: PHPUnit (PHP ${{ matrix.php }}) - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: php: @@ -23,11 +23,12 @@ jobs: - 5.5 - 5.4 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: xdebug + ini-file: development - run: composer install - run: vendor/bin/phpunit --coverage-text if: ${{ matrix.php >= 7.3 }} @@ -36,13 +37,16 @@ jobs: PHPUnit-hhvm: name: PHPUnit (HHVM) - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 continue-on-error: true steps: - - uses: actions/checkout@v2 - - uses: azjezz/setup-hhvm@v1 + - uses: actions/checkout@v3 + - run: cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM + - name: Run hhvm composer.phar install + uses: docker://hhvm/hhvm:3.30-lts-latest with: - version: lts-3.30 - - run: composer self-update --2.2 # downgrade Composer for HHVM - - run: hhvm $(which composer) install - - run: hhvm vendor/bin/phpunit + args: hhvm composer.phar install + - name: Run hhvm vendor/bin/phpunit + uses: docker://hhvm/hhvm:3.30-lts-latest + with: + args: hhvm vendor/bin/phpunit diff --git a/composer.json b/composer.json index f933f153..2a48ed1d 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36" + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.36" }, "autoload": { "psr-4": { diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 5c44c780..42422782 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,11 +1,12 @@ - - + + convertDeprecationsToExceptions="true"> ./tests/ @@ -19,4 +20,12 @@ ./src/functions_include.php + + + + + + + + diff --git a/phpunit.xml.legacy b/phpunit.xml.legacy index 84ac9123..74ae9a12 100644 --- a/phpunit.xml.legacy +++ b/phpunit.xml.legacy @@ -1,6 +1,6 @@ - + + + + + + + + + diff --git a/tests/fixtures/CountableException.php b/tests/fixtures/CountableException.php index 5573d62d..e4264b2b 100644 --- a/tests/fixtures/CountableException.php +++ b/tests/fixtures/CountableException.php @@ -7,6 +7,7 @@ class CountableException extends RuntimeException implements Countable { + #[\ReturnTypeWillChange] public function count() { return 0; diff --git a/tests/fixtures/CountableNonException.php b/tests/fixtures/CountableNonException.php index 007e6127..7907184b 100644 --- a/tests/fixtures/CountableNonException.php +++ b/tests/fixtures/CountableNonException.php @@ -7,6 +7,7 @@ class CountableNonException implements Countable { + #[\ReturnTypeWillChange] public function count() { return 0;