PHPUnit can#39;t found the quot;TestCasequot; class(PHPUnit 找不到“TestCase;班级)
问题描述
要使用项目的 PHPUnit 运行我的测试,我执行以下操作:php vendor/bin/phpunit tests/SomeClassTest.php
考虑到以下类声明,它可以正常工作:
To run my tests using the project's PHPUnit I do the following : php vendor/bin/phpunit tests/SomeClassTest.php
which works fine given the following class declaration :
class SomeClassTest extends PHPUnit_Framework_TestCase {
public function test_someMethod() {}
}
但是当我这样做时它失败了:
But it fails when I do this :
use PHPUnitFrameworkTestCase;
class SomeClassTest extends TestCase {
public function test_someMethod() {}
}
我得到 PHP 致命错误:找不到类 'PHPUnitFrameworkTestCase'
...
推荐答案
Class TestCase
从 PHPUnit 5.4 开始存在.如果你设置了 5.3 标签,你可以在 github 上看到它(寻找 ForwardCompatibility
文件夹)或者您可以比较 5.3 和 5.4 在 2.为 PHPUnit 编写测试
部分,上面写着:
Class TestCase
exists since PHPUnit 5.4. You can see it on github if you set 5.3 tag (look for ForwardCompatibility
folder) or you can compare doc for 5.3 and 5.4 in the 2. Writing Tests for PHPUnit
section where it says:
ClassTest (大部分时间)继承自 PHPUnit_Framework_TestCase." 对于 PHPUnit 5.3
"ClassTest inherits (most of the time) from PHPUnit_Framework_TestCase." for PHPUnit 5.3
和
ClassTest (大部分时间)继承自 PHPUnitFrameworkTestCase." 对于 PHPUnit 5.4
"ClassTest inherits (most of the time) from PHPUnitFrameworkTestCase." for PHPUnit 5.4
这篇关于PHPUnit 找不到“TestCase";班级的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHPUnit 找不到“TestCase";班级
- 带有通配符的 Laravel 验证器 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- Laravel 仓库 2022-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01