Xampp PHPUnitのインストール



原文住所:http://www.xbc.me/install-phpunit-on-xampp/
最近ではMagentoのプラグインの開発に着手する予定であり,プラグインのコード品質を保証するためにTDD方式で開発することにした.PHPの実戦で見たTDDの開発方法は、急に明るくなって、開発するのに少しも苦労していないので、今やっと自分で実現する機会がありました.
もちろん、袖を巻く前にPHPUnitの開発環境を整える必要があります.PHPUnitの最新バージョンはすでに自分のpear.phpunit.deサイトに移行しています.本文はあなたがすでにXamppの開発環境を配置したと仮定して、私の前の文章PHPの開発環境の構築.
まずあなたのpearバージョンをアップグレードして、最新のPHPUnit 3.6はPEARのバージョンが高いことを要求します.スタートメニューでCMDコマンドラインを開きます.

cd /d D:\xampp\php
pear config-show
CONFIGURATION (CHANNEL PEAR.PHP.NET):
=====================================
Auto-discover new Channels     auto_discover    1
Default Channel                default_channel  pear.php.net
HTTP Proxy Server Address      http_proxy       
PEAR server [DEPRECATED]       master_server    pear.php.net
Default Channel Mirror         preferred_mirror pear.php.net
Remote Configuration File      remote_config    
PEAR executables directory     bin_dir          D:\xampp\php
PEAR documentation directory   doc_dir          D:\xampp\php\docs
PHP extension directory        ext_dir          D:\xampp\php\ext
PEAR directory                 php_dir          D:\xampp\php\pear
PEAR Installer cache directory cache_dir        D:\xampp\php\tmp
PEAR configuration file        cfg_dir          D:\xampp\php\cfg
directory
PEAR data directory            data_dir         D:\xampp\php\data
PEAR Installer download        download_dir     D:\xampp\php\tmp
directory
PHP CLI/CGI binary             php_bin          D:\xampp\php\.\php.exe
php.ini location               php_ini          
--program-prefix passed to     php_prefix       
PHP's ./configure
--program-suffix passed to     php_suffix       
PHP's ./configure
PEAR Installer temp directory  temp_dir         D:\xampp\php\tmp
PEAR test directory            test_dir         D:\xampp\php\tests
PEAR www files directory       www_dir          D:\xampp\php\www
Cache TimeToLive               cache_ttl        3600
Preferred Package State        preferred_state  stable
Unix file mask                 umask            0
Debug Log Level                verbose          1
PEAR password (for             password         
maintainers)
Signature Handling Program     sig_bin          c:\gnupg\gpg.exe
Signature Key Directory        sig_keydir       C:\Windows\pearkeys
Signature Key Id               sig_keyid        
Package Signature Type         sig_type         gpg
PEAR username (for             username         
maintainers)
User Configuration File        Filename         C:\Windows\pear.ini
System Configuration File      Filename         C:\Windows\pearsys.ini
以上は私のpearプロファイルです.参考までに、以下のコマンドを入力してpearのバージョンをアップグレードします.

pear upgrade pear
アップグレードされたバージョンの表示

pear –V

PEAR Version: 1.9.4
PHP Version: 5.3.5
Zend Engine Version: 2.3.0
Running on: Windows NT ARTHUR-PC 6.1 build 7600 (Unknow Windows version
Ultimate Edition) i586
PHPUnitのバージョンを3.6にアップグレードし、pearが持っているバージョンが低すぎます.

pear upgrade pear/PHPUnit
更新に失敗した情報

pear/PHPUnit is already installed and is the same as the released version 1.3.2
  upgrade failed
現在のPHPUnitバージョンをアンインストールする

pear uninstall pear/PHPUnit
注意自動追加チャンネルの設定

pear config-set auto_discover 1

  PHPUnit     

pear channel-discover components.ez.no
pear channel-discover pear.phpunit.de
pear channel-discover pear.symfony-project.com
PHPUnitのインストール

pear install --alldeps phpunit/PHPUnit
PHPUnitのバージョンの表示

phpunit –V
 
PHPUnit 3.6.3 by Sebastian Bergmann.
D:xamppphpなどの環境変数にpearのパスを追加します.これで直接pear命令を下すことができます.
最初のテストを作成します

cd /d D:\xampp\htdocs\dev142\tests
新しいindex.phpファイル

//This is my first test
class MyFirstTest extends PHPUnit_Framework_TestCase{
    public function testFirst(){
        $stack = array();
        $this->assertEquals(0,count($stack));
    }
}
?>
あなたが書いたコードをテストします

phpunit index.php
PHPUnit 3.6.3 by Sebastian Bergmann.
.
Time: 0 seconds, Memory: 3.50Mb
 
OK (1 test, 1 assertion)
参照
http://pear.phpunit.de/
http://amiworks.co.in/talk/installing-pear-and-phpunit-on-wamp-and-windows-7/
https://github.com/sebastianbergmann/phpunit/
http://blog.lixiphp.com/windows-install-pear-phpunit/
 
また、インストールが完了したら、phppearPHPUnitExtensionsディレクトリの下にSeleniumの先頭を含むファイルおよびフォルダがあるかどうかを確認し、存在しない場合は別途インストールする必要があります:pear install phpunit/HPUnit_Seleniumを使用しないと、ファイルが見つからないというメッセージが表示されます.
Failed opening required 'PHPUnit/Extensions/SeleniumTestCase.php'