欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Windows下wamp php单元测试工具PHPUnit安装及生成日志文件配置方法

程序员文章站 2022-11-23 18:41:11
本文实例讲述了windows下wamp php单元测试工具phpunit安装及生成日志文件配置方法。分享给大家供大家参考,具体如下: phpunit下载网站 一、安装...

本文实例讲述了windows下wamp php单元测试工具phpunit安装及生成日志文件配置方法。分享给大家供大家参考,具体如下:

phpunit下载网站

一、安装phpunit

1.选择版本

我用的是php版本是5.6.25 所以我选择的是phpunit 5.7

2.安装过程

① 为 php 的二进制可执行文件建立一个目录,例如 c:\bin

② 将 ;c:\bin 附加到 path 环境变量中  【将 php的目录 ;e:\wamp64\bin\php\php5.6.25 也附加到 path 环境变量中 】

③ 下载phpunit.phar 并将文件保存到 c:\bin\phpunit.phar

④ 打开cmd命令行

⑤ 建立外包覆批处理脚本(最后bin目录下会自动生成 c:\bin\phpunit.cmd 文件):

c:\users\username> cd c:\bin
c:\bin> echo @php "%~dp0phpunit.phar" %* > phpunit.cmd
c:\bin> exit

⑥ 【注意下载下来一般是phpunitx-y.phar,带版本号的 所以要去掉版本号  修改文件名为 phpunitx.phar】

⑦ 新开一个cmd命令行窗口,确认一下可以在任意路径下执行 phpunit:

c:\bin>phpunit --version
phpunit 5.7.19 by sebastian bergmann and contributors.

二、使用phpunit进行测试

在c:\bin 目录下创建文件stacktest.php

<?php
use phpunit\framework\testcase;
 class stacktest extends testcase
 {
  public function testpushandpop()
  {
   $stack = [];
   $this->assertequals(0, count($stack));
   array_push($stack, 'foo');
   $this->assertequals('foo', $stack[count($stack)-1]);
   $this->assertequals(1, count($stack));
   $this->assertequals('foo', array_pop($stack));
   $this->assertequals(0, count($stack));
  }
 }
?>

进行测试

c:\bin>phpunit stacktest.php
phpunit 5.7.19 by sebastian bergmann and contributors.
.                 1 / 1 (100%)
time: 543 ms, memory: 13.00mb
ok (1 test, 5 assertions)

三、phpunit 生成三种日志文件的配置方法

#目录结构 windows

bin目录下

├── phpunit.phar
├── phpunit.cmd
├── phpunit.xml
├── build.xml
├── arrtest.php
└── tmp
      ├── logfile.json
      ├── logfile.tap
      └── logfile.xml

#日志xml文件配置 新建文件 build.xml 放置在根目录

<logging>
<log type="json" target="tmp/1ogfile.json"/>
<log type="junit" target="tmp/logfile.xml" logincompleteskipped="false"/>
<log type="tap" target="tmp/logfile.tap"/>
</logging>

#命令

*生成xml格式的日志文件

phpunit --log-junit tmp/logfile.xml arrtest.php

*生成tap格式的日志文件

phpunit --log-tap tmp/logfile.tap arrtest.php

*生成json格式的日志文件

phpunit --log-json tmp/logfile.json arrtest.php

更多关于php相关内容感兴趣的读者可查看本站专题:《php错误与异常处理方法总结》、《php字符串(string)用法总结》、《php数组(array)操作技巧大全》、《php运算与运算符用法总结》、《php网络编程技巧总结》、《php基本语法入门教程》、《php面向对象程序设计入门教程》及《php优秀开发框架总结

希望本文所述对大家php程序设计有所帮助。