我在安装PEAR时遇到问题,但我真的只想安装PHPUnit.有没有人有这方面的经验?
您可以按照Git自述文件中的说明操作:https://github.com/sebastianbergmann/phpunit/
cd ~ && mkdir phpunit && cd phpunit
git clone git://github.com/sebastianbergmann/phpunit.git
git clone git://github.com/sebastianbergmann/dbunit.git
git clone git://github.com/sebastianbergmann/php-file-iterator.git
git clone git://github.com/sebastianbergmann/php-text-template.git
git clone git://github.com/sebastianbergmann/php-code-coverage.git
git clone git://github.com/sebastianbergmann/php-token-stream.git
git clone git://github.com/sebastianbergmann/php-timer.git
git clone git://github.com/sebastianbergmann/phpunit-mock-objects.git
git clone git://github.com/sebastianbergmann/phpunit-selenium.git
Run Code Online (Sandbox Code Playgroud)
cd ~ && mkdir bin
vi ~/.profile
>> export PATH=$HOME/bin:$PATH
>> :wq
source ~/.profile
Run Code Online (Sandbox Code Playgroud)
touch ~/bin/phpunit
chmod 755 ~/bin/phpunit
Run Code Online (Sandbox Code Playgroud)
#!/usr/bin/env php
<?php
// set main method
define('PHPUnit_MAIN_METHOD','PHPUnit_TextUI_Command::main');
// add phpunit to the include path
$paths = scandir($_ENV['HOME'].'/phpunit');
$includes = array();
foreach($paths as $path){
if (!preg_match('/^\./', $path)){
$includes[] = $_ENV['HOME'].'/phpunit/' . $path;
}
}
set_include_path(implode(PATH_SEPARATOR,$includes).PATH_SEPARATOR.get_include_path());
// set the auto loader
require 'PHPUnit/Autoload.php';
// execute
PHPUnit_TextUI_Command::main();
Run Code Online (Sandbox Code Playgroud)
which phpunit
phpunit --version
Run Code Online (Sandbox Code Playgroud)
来自PHPUnit 安装指南:
尽管使用 PEAR 安装程序是安装 PHPUnit 的唯一受支持的方法,但您可以手动安装 PHPUnit。对于手动安装,请执行以下操作:
| 归档时间: |
|
| 查看次数: |
8780 次 |
| 最近记录: |