码迷,mamicode.com
首页 > Web开发 > 详细

phpunit部署

时间:2018-10-15 12:02:21      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:load   -o   https   图片   分享图片   配置   test   技术   mon   

  • 下载:
    wget  https://phar.phpunit.de/phpunit-7.0.phar
    chmod  +x  phpunit-7.0.phar
    mv  phpunit-7.0.phar  /usr/local/bin/phpunit
    phpunit  --version

    技术分享图片

  • 测试:
    a. 下载测试包:
    git  clone  https://github.com/sebastianbergmann/money.git

    b. 进入测试包:

    cd  money

    c. 直接测试:

    phpunit  --bootstrap  src/autoload.php  tests

    d. 创建 xml 配置文件测试:
    d-1. 创建配置文件:
    vim phpunit.xml

    <phpunit bootstrap="src/autoload.php">
    <testsuites>
        <testsuite name="随便取">
            <directory>tests</directory>
        </testsuite>
    </testsuites>
    </phpunit>

    d-2. 命令:

    phpunit  tests

    技术分享图片

  • phpunit部署

    标签:load   -o   https   图片   分享图片   配置   test   技术   mon   

    原文地址:http://blog.51cto.com/12173069/2299866

    (0)
    (0)
       
    举报
    评论 一句话评论(0
    登录后才能评论!
    © 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
    迷上了代码!