#一,新建composer.json檔案
{ "require": { "yzalis/identicon": "^1.1", "phpunit/phpunit": "5.5.*" } }
登入後複製
二,運行composer install,得到如下目錄結構
三,複製yzalis/phpuit.xml.dist
到專案的根目錄下,並重新命名為phpunit.xml
#四,設定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); } }
登入後複製