n98 / junit-xml
JUnit XML 文档生成库
1.1.0
2020-12-25 09:08 UTC
Requires (Dev)
- phpunit/phpunit: ^9.5.0
This package is auto-updated.
Last update: 2024-08-25 17:29:27 UTC
README
JUnit XML 文档生成库
使用 composer 安装组件。
composer require --dev n98/junit-xml
示例
require_once __DIR__ . '/../vendor/autoload.php'; $document = new \N98\JUnitXml\Document(); $suite = $this->document->addTestSuite(); $timeStamp = new \DateTime(); $suite->setName('My Test Suite'); $suite->setTimestamp($timeStamp); $suite->setTime(0.344244); $testCase = $suite->addTestCase(); $testCase->addError('My error 1', 'Exception'); $testCase->addError('My error 2', 'Exception'); $testCase->addError('My error 3', 'Exception'); $testCase->addError('My error 4', 'Exception'); $testCase->addFailure('My failure 1', 'Exception'); $testCase->addFailure('My failure 2', 'Exception'); $document->save('results.xml');