1.新しいcomposer.jsonファイルを作成します
{
"require": {
"yzalis/identicon": "^1.1",
"phpunit/phpunit": "5.5.*"
}
}
2.composer installを実行して、
3 番目に、yzalis/phpuit.xml.dist
をプロジェクトのルート ディレクトリにコピーし、名前を phpunit に変更します。 xml
4、phpstorm の php 環境を構成します
5、PHPUnit 環境を構成します
# 6、新しい 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);
}
}
7、実行
##8、出力
以上がphpstorm+laravel+phpunitの設定を完了するための記事1つの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。