walf443/test_tap 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

walf443/test_tap

最新稳定版本:v0.0.1

Composer 安装命令:

composer require walf443/test_tap

包简介

php port of perl's Test::More

关键字:

README 文档

README

TestTap - php port of perl's Test::More.

Example:
     you wrote test code.
         $t = new TestTAP();
         $t->ok(1==0, "failed test");
         $t->is(1, 0, "1 should be 0");
         $t->subtest("categorize test", function($t) {
             $t->ok(0==1, "It's subtest");
         });
         $t->done_testing();  # you should call at last.

     and you run
         $ php test.php

     If you want to customize more output, use perl's Test::Harnesse's prove command.

         $ prove -v --exec=php -r test/*.php


统计信息

  • 总下载量: 24
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2012-03-30