Integrate PHPT test cases with PHPUnit(将 PHPT 测试用例与 PHPUnit 集成)
问题描述
如何让 PHPUnit 运行我的 PHPT 测试用例 并整合通过/失败状态进入整体指标?我已经知道如何使用 run-phpt 运行这些测试
从命令行,但我想在 PHPUnit 中运行它们和我的其他测试.
How can I get PHPUnit to run my PHPT test cases and integrate the pass/fail status into the overall metrics? I am already aware of how to run these tests using run-phpt
from the command line, but I want to run them from within PHPUnit with my other tests.
我知道 PHPUnit_Extensions_PhptTestCase
存在,但我找不到任何有关如何使用它的示例.
I'm aware that the PHPUnit_Extensions_PhptTestCase
exists but I couldn't find any samples on how to use it.
推荐答案
虽然本文的重点是博文关于测试文件上传 是描述如何编写 PHPT 测试,它在文章末尾展示了如何将它们集成到 PHPUnit 中.简而言之,您将 .phpt
文件的绝对路径传递给父构造函数.
While the main point of this blog post about testing file uploads is to describe how to write PHPT tests, it shows how to integrate them into PHPUnit at the end of the post. In short, you pass the absolute path to the .phpt
file to the parent constructor.
<?php
require_once 'PHPUnit/Extensions/PhptTestCase.php';
class UploadExampleTest extends PHPUnit_Extensions_PhptTestCase {
public function __construct() {
parent::__construct(__DIR__ . '/upload-example.phpt');
}
}
或者,您可以使用 PHPUnit_Extensions_PhptTestSuite
类,该类将目录作为其第一个构造函数参数,然后搜索该目录中的所有 *.phpt 文件.
Alternatively, you can use the PHPUnit_Extensions_PhptTestSuite
class, that takes a directory as its first constructor argument and then searches for all *.phpt files within this directory.
这篇关于将 PHPT 测试用例与 PHPUnit 集成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 PHPT 测试用例与 PHPUnit 集成
基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01