为什么,致命错误:在...中找不到类'PHPUnit_Framework_TestCase'? [英] Why, Fatal error: Class 'PHPUnit_Framework_TestCase' not found in ...?

查看:741
本文介绍了为什么,致命错误:在...中找不到类'PHPUnit_Framework_TestCase'?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么我会遇到此PHP错误?

Why I'm getting this PHP error?

Fatal error: Class 'PHPUnit_Framework_TestCase' not found in ...

推荐答案

PHPUnit文档 用来表示包含/要求PHPUnit/Framework.php,如下所示:

The PHPUnit documentation says used to say to include/require PHPUnit/Framework.php, as follows:

require_once ('PHPUnit/Framework/TestCase.php');

更新

从PHPUnit 3.5开始,有一个内置的autoloader类将为您处理此问题:

As of PHPUnit 3.5, there is a built-in autoloader class that will handle this for you:

require_once 'PHPUnit/Autoload.php';

感谢凤凰城指出这一点!

Thanks to Phoenix for pointing this out!

这篇关于为什么,致命错误:在...中找不到类'PHPUnit_Framework_TestCase'?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆