laravel单元测试

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

laravel中集成了单元测试工具phpunit可以在项目的根目录下进行使用,命令是:phpunti .\tests\单元测试文件名称。在phpstorm中使用phpunit需要做一些配置,指定composer的autoload.php就可以了。具体做法如下:

1、选择File->Setting->Languages&Framework->php->phpunit;

2、在phpunit liberay中选择 Use Composer autoloader;

3、在下面的框中填写项目目录\vendor\autoload.php;

保存之后就完成了配置。

转载于:https://my.oschina.net/guancen/blog/729438

你可能感兴趣的:(laravel单元测试)