程序员最近都爱上了这个网站  程序员们快来瞅瞅吧!  it98k网:it98k.com

本站消息

站长简介/公众号

  出租广告位,需要合作请联系站长

+关注
已关注

分类  

暂无分类

标签  

暂无标签

日期归档  

暂无数据

Array to string conversion exception when using PHPUnit HTML Coverage

发布于2023-01-19 16:54     阅读(146)     评论(0)     点赞(2)     收藏(0)


I'm having an issue that seems to be related to the --coverage-html functionality in PHPUnit (I'm using version 4.8.0, though I've encountered it with other versions, too). When I leave it enabled, all tests fail with Array to string conversion in the console.

I've been debugging a bit and it seems to be related to this piece of code:

// vendor/phpunit/php-token-stream/src/Token/Stream.php:437-441
$this->addFunctionToMap(
    $class . '::' . $name,
    $tmp['startLine'],
    $tmp['endLine']
);

The $class variable is a one-item array with the name of one of my classes, though obviously, a string is expected.

Does anyone have any idea why this is happening, and what I can do to fix it?

Edit: I noticed people are getting this message when making a mistake with mocking, this also happens for me with mock-less tests


解决方案


As it turns out, this is a regression that was introduced in a new version of php-token-stream.

A pull request has been submitted.

https://github.com/sebastianbergmann/php-token-stream/pull/55



所属网站分类: 技术文章 > 问答

作者:黑洞官方问答小能手

链接:http://www.phpheidong.com/blog/article/476835/3e55e2f23d6ae232ec9f/

来源:php黑洞网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

2 0
收藏该文
已收藏

评论内容:(最多支持255个字符)