あなたの問題は、PHPUnitAutoloader.php
が含まれていないことに関係していると思います。spl_autoloadspl_register
このファイルは、 のようなインターフェースやクラスのロードを担当するphp関数を設定しますPHPUnit_Framework_Test
。
この SO questionによると、オートローダー ファイルを手動で含める必要があります。セットアップとその特定のライブラリがどのように機能するかについて詳しく知らなくても、適切なファイルで次のようなことを行うと思います。
// define phpunit path
if ( ! defined('PHPUNIT_PATH')) {
// define an absolute path to your PHPUnit dir
// CHECK THIS, i'm not good with php on windows:
define('PHPUNIT_PATH','C:\xampp\php\PEAR\PHPUnit');
}
// Then include the autoloader like this:
include PHPUNIT_PATH.'Autoloader.php';
これがあなたや他の誰かに役立つことを願っています。