我使用的是XAMPP 1.8.1,Windows 7 64位,Netbeans IDE 7.4 我已經安裝了PHPUnit。 當我運行代碼時,出現以下錯誤。致命錯誤:找不到類'PHPUnit_Framework_TestCase'
Fatal error: Class 'PHPUnit_Framework_TestCase' not found in D:\xampp\htdocs\PHPUnit\index.php on line 6
的代碼是:
<?php
class StackTest extends PHPUnit_Framework_TestCase {
public function testPushAndpop() {
$stack = array();
$this->assertEquals(0, count($stack));
array_push($stack, 'foo');
$this->assertEquals('foo', $stack[count($stack) - 1]);
$this->assertEquals(1, count($stack));
$this->assertEquals('foo', array_pop($stack));
$this->assertEquals(0, count($stack));
}
}
?>
我已經加入d:\ XAMPP \ PHP在環境變量PATH 任何人都建議我該如何解決這個問題呢? 在此先感謝。