我正在尝试开始使用单元测试和PHPUnit。 I see code here that indicates the way to get started is to include 'PHPUnit/Framework.php' and then create a test case that extends PHPUnit_Framework_TestCase
看起来这不再是包含PHPUnit的方式,但new docs没有解释为了使PHPUnit工作需要包含哪些文件。
我错过了什么?当我包含'Framework.php'时,会触发一个错误,告诉我不再包含该文件。 'Autoloader.php'也不起作用。当我包含诸如'TestSuiteLoader.php'等文件时,我将不可避免地遇到一个错误,告诉我另一个需要的文件丢失了。我怀疑我应该手动包含几十个文件,但文档还不清楚我应该包括什么。
答案 0 :(得分:1)
您应该在php.ini's
include_path
中加入phpunit库,而不是手动包含它们。
我的包含路径为include_path = ".;C:\wamp\library\phpunit";