admin管理员组文章数量:1352186
I'm developing a Wordpress plugin and wanted to use a test-driven approach so I installed PHPUnit and the WP CLI tool. I did wp scaffold plugin-tests my-plugin
and it generated the scaffolding files just fine. I did bin/install-wp-tests.sh site_name user pass host
and it did its thing with no errors. So I ran my tests and got:
❯ phpunit
Installing...
Running as single site... To run multisite, use -c tests/phpunit/multisite.xml
PHP Warning: Class "PHPUnit\Framework\Error\Deprecated" not found in /private/var/folders/px/v5s4zb6n5bzbhpxvyvgt99x40000gn/T/wordpress-tests-lib/includes/phpunit6/compat.php on line 8
Warning: Class "PHPUnit\Framework\Error\Deprecated" not found in /private/var/folders/px/v5s4zb6n5bzbhpxvyvgt99x40000gn/T/wordpress-tests-lib/includes/phpunit6/compat.php on line 8
PHP Warning: Class "PHPUnit\Framework\Error\Notice" not found in /private/var/folders/px/v5s4zb6n5bzbhpxvyvgt99x40000gn/T/wordpress-tests-lib/includes/phpunit6/compat.php on line 9
Warning: Class "PHPUnit\Framework\Error\Notice" not found in /private/var/folders/px/v5s4zb6n5bzbhpxvyvgt99x40000gn/T/wordpress-tests-lib/includes/phpunit6/compat.php on line 9
PHP Warning: Class "PHPUnit\Framework\Error\Warning" not found in /private/var/folders/px/v5s4zb6n5bzbhpxvyvgt99x40000gn/T/wordpress-tests-lib/includes/phpunit6/compat.php on line 10
Warning: Class "PHPUnit\Framework\Error\Warning" not found in /private/var/folders/px/v5s4zb6n5bzbhpxvyvgt99x40000gn/T/wordpress-tests-lib/includes/phpunit6/compat.php on line 10
PHP Warning: Class "PHPUnit\Framework\Warning" not found in /private/var/folders/px/v5s4zb6n5bzbhpxvyvgt99x40000gn/T/wordpress-tests-lib/includes/phpunit6/compat.php on line 12
Warning: Class "PHPUnit\Framework\Warning" not found in /private/var/folders/px/v5s4zb6n5bzbhpxvyvgt99x40000gn/T/wordpress-tests-lib/includes/phpunit6/compat.php on line 12
PHP Warning: Class "PHPUnit\Framework\TestListener" not found in /private/var/folders/px/v5s4zb6n5bzbhpxvyvgt99x40000gn/T/wordpress-tests-lib/includes/phpunit6/compat.php on line 15
Warning: Class "PHPUnit\Framework\TestListener" not found in /private/var/folders/px/v5s4zb6n5bzbhpxvyvgt99x40000gn/T/wordpress-tests-lib/includes/phpunit6/compat.php on line 15
Not running ajax tests. To execute these, use --group ajax.
Not running ms-files tests. To execute these, use --group ms-files.
Not running external-http tests. To execute these, use --group external-http.
PHPUnit 12.0.10 by Sebastian Bergmann and contributors.
Runtime: PHP 8.3.12
Configuration: /Volumes/Speicher/Jobs/sandboxes/wordpress/wp-content/plugins/quicksilver/phpunit.xml.dist
Looking at the repo for PHPUnit I find that there hasn't been a Framework/Error class since version 9.5, which is not compatible with PHP8+.
Any idea how to solve this?
本文标签: Latest Wordpress CLI tool generates tests incompatible with latest PHPUnitStack Overflow
版权声明:本文标题:Latest Wordpress CLI tool generates tests incompatible with latest PHPUnit - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743880848a2555170.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论