PHP zendframework phpunit 深入

來源:互聯網
上載者:User

標籤:

安裝包管理curl -sS https://getcomposer.org/installer | /usr/local/php/bin/php將認證安裝到~$ mkdir ~/tools/https-ca ~$ cd ~/tools/https-ca ~$ curl http://curl.haxx.se/ca/cacert.pem -o cacert.pem地址在/Users/jackluo/tools/https-ca/cacert.pem然後修改php.ini檔案openssl.cafile=/Users/jackluo/tools/https-ca/cacert.pem下載檔案/usr/local/php/bin/php composer create-project --repository-url="http://packages.zendframework.com" zendframework/skeleton-application .nginx 偽靜態設定server {      listen      80;      server_name www.example.com;      root        /var/www/www.example.com/myapplication;      index       index.html index.htm index.php;       location / {        try_files $uri $uri/ /index.php$is_args$args;      }       location ~ \.php$ {        fastcgi_pass   unix:/usr/local/zend/tmp/php-fastcgi.socket;        fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;        include        fastcgi_params;      }    }安裝pear$ cd /usr/localcurl http://pear.php.net/go-pear | sudo /usr/local/php/bin/phpwhich pear$ vi ~/.bash_profilephp.ini 修改include_path = "/usr/local/bin:.:/php/includes"
<?phpclass DataTest extends PHPUnit_Framework_TestCase{    /**     * @dataProvider additionProvider     */    public function testAdd($a, $b, $expected)    {        $this->assertEquals($expected, $a + $b);    }    public function additionProvider()    {        return array(          array(0, 0, 0),          array(0, 1, 1),          array(1, 0, 1),          array(1, 1, 3)        );    }}?>
[email protected]:~/Works/php $phpunit DataTestPHPUnit 4.4.1 by Sebastian Bergmann....FTime: 40 ms, Memory: 3.50MbThere was 1 failure:1) DataTest::testAdd with data set #3 (1, 1, 3)Failed asserting that 2 matches expected 3./Users/jackluo/Works/php/DataTest.php:9FAILURES!Tests: 4, Assertions: 4, Failures: 1.[email protected]-MacBook-Pro:~/Works/php $

 

PHP zendframework phpunit 深入

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.