• 技术文章 >后端开发 >php教程

    手动装配phpunit

    2016-06-13 12:59:43原创482
    手动安装phpunit

    在ubuntu12.04下面phpunit报错

    PHP Fatal error:  Call to undefined method PHP_CodeCoverage_Filter::getInstance() in /usr/share/php/PHPUnit/Framework.php on line 46

    $ pear config-show
    Which showed this (unlike my config-show):
    
    Configuration (channel pear.php.net):
    =====================================
    Auto-discover new Channels auto_discover 
    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 /usr/bin
    PEAR documentation directory doc_dir /usr/share/php/doc
    PHP extension directory ext_dir /usr/lib/php5/20090626+lfs
    PEAR directory php_dir /usr/share/php
    PEAR Installer cache directory cache_dir /tmp/pear/cache
    PEAR configuration file cfg_dir /usr/share/php/cfg
    directory
    PEAR data directory data_dir /usr/share/php/data
    PEAR Installer download download_dir /build/buildd/php5-5.3.10/pear-build-download
    directory
    PHP CLI/CGI binary php_bin /usr/bin/php
    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 /tmp/pear/temp
    PEAR test directory test_dir /usr/share/php/test
    PEAR www files directory www_dir /usr/share/php/htdocs
    Cache TimeToLive cache_ttl 3600
    Preferred Package State preferred_state stable
    Unix file mask umask 2
    Debug Log Level verbose 1
    PEAR password (for password maintainers)
    Signature Handling Program sig_bin /usr/bin/gpg
    Signature Key Directory sig_keydir /etc/pear/pearkeys
    Signature Key Id sig_keyid 
    Package Signature Type sig_type gpg
    PEAR username (for username 
    maintainers)
    User Configuration File Filename /home/username/.pearrc
    System Configuration File Filename /etc/pear/pear.conf
    You need to set following configurations:
    
    sudo pear config-set bin_dir /usr/bin
    sudo pear config-set doc_dir /usr/share/php/doc
    sudo pear config-set php_dir /usr/share/php
    sudo pear config-set cfg_dir /usr/share/php/cfg (make (sudo mkdir cfg) directory here)
    sudo pear config-set data_dir /usr/share/php/data
    sudo pear config-set test_dir /usr/share/php/test


    sudo apt-get install git
    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
    git clone git://github.com/sebastianbergmann/phpunit-story.git
    git clone git://github.com/sebastianbergmann/php-invoker.git
    sudo cp -r dbunit/PHPUnit /usr/share/php/
    sudo cp -r php-code-coverage/PHP /usr/share/php/
    sudo cp -r php-file-iterator/File /usr/share/php/
    sudo cp -r php-invoker/PHP /usr/share/php/
    sudo cp -r php-text-template/Text /usr/share/php/
    sudo cp -r php-timer/PHP /usr/share/php/
    sudo cp -r php-token-stream/PHP /usr/share/php/
    sudo cp -r phpunit/PHPUnit /usr/share/php/
    sudo cp -r phpunit-mock-objects/PHPUnit /usr/share/php/
    sudo cp -r phpunit-selenium/PHPUnit /usr/share/php/
    sudo cp -r phpunit-story/PHPUnit /usr/share/php/
    sudo cp -r phpunit/phpunit.php /usr/share/php/





    php入门到就业线上直播课:查看学习

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

    前端(VUE)零基础到就业课程:点击学习

    清晰的学习路线+老师随时辅导答疑

    自己动手写 PHP MVC 框架:点击学习

    快速了解MVC架构、了解框架底层运行原理

    专题推荐:PHP pear phpunit share git
    上一篇: 这样的递归如何做? 下一篇:自己动手写 PHP MVC 框架(40节精讲/巨细/新人进阶必看)

    相关文章推荐

    • ❤️‍🔥共22门课程,总价3725元,会员免费学• ❤️‍🔥接口自动化测试不想写代码?• 你知道如何用PHP实现多进程吗• PHP与MySQL连接的方法总结• 求解:phpcms模板怎样转码?该怎么解决• php 之 cookie 跟 session 简单解读(笔记)• php 网页截取快讯代码
    1/1

    PHP中文网