mirror of
https://github.com/pestphp/pest.git
synced 2026-09-05 06:13:35 +02:00
18 lines
615 B
XML
18 lines
615 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Runs TiaReplayHooks.php as a suite of its own, so `tests/Features/Tia.php` can
|
|
replay it without narrowing the run to a path. TIA declines to replay a
|
|
narrowed run, and a single-file invocation is exactly that.
|
|
-->
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
|
|
bootstrap="../../../vendor/autoload.php"
|
|
colors="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="default">
|
|
<file>TiaReplayHooks.php</file>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|