2011-02-01 57 views
2

我試圖開始使用單元測試和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正常工作

看起來這不再是包含PHPUnit的方式,但new docs不能解釋爲使PHPUnit工作需要包含哪些文件。

我錯過了什麼?當我包含'Framework.php'時會觸發一個錯誤,告訴我不要再包含該文件。 'Autoloader.php'也不起作用。當我包含'TestSuiteLoader.php'等文件時,我將不可避免地遇到一個錯誤,告訴我缺少另一個需要的文件。我懷疑我應該手動包含幾十個文件,但文檔不清楚我應該包含什麼。

+0

你鏈接到「新文檔」指向3.5版本,這正常嗎?你的第一個鏈接指向了3.4版本BTW中的一個例子。 – greg0ire 2011-02-01 22:10:20

+0

@ greg0ire我現在正在使用3.6版本,3.6和3.5的手冊在該頁面上是相同的。 – somas1 2011-02-01 22:13:03

回答

1

您應該在您的php.ini'sinclude_path中包含phpunit庫,而不是手動包含它們。

我包括路徑是include_path = ".;C:\wamp\library\phpunit";

相關問題