phpstorm-laravel-phpunit

一,新建composer.json文件

{
    "require": {
        "yzalis/identicon": "^1.1",
        "phpunit/phpunit": "5.5.*"
    }
}

二,運行composer install,獲得以下目錄結構

圖片描述

三,複製yzalis/phpuit.xml.dist到項目的根目錄下,並重命名爲phpunit.xml

四,配置phpstorm的php環境

配置phpstorm的php環境

五,配置PHPUnit環境

圖片描述

六,新建RunTest.php文件

<?php

namespace demo1;
use Identicon\Identicon;
use PHPUnit\Framework\TestCase;
class RunTest extends TestCase{
    
    public function testDemo(){
        $identicon = new Identicon();
        $img = $identicon->getImageData('bar',512);
        file_put_contents('./a.png',$img);
    }
}

七,執行

圖片描述

八,輸出

圖片描述

相關文章
相關標籤/搜索
本站公眾號
   歡迎關注本站公眾號,獲取更多信息