# hello-plus/trunk/phpunit.xml

Hello Plus, version trunk. 37 lines.

- Page: https://pluginprobe.com/plugins/hello-plus/trunk/code/phpunit.xml
- Raw: https://pluginprobe.com/plugins/hello-plus/trunk/raw/phpunit.xml
- Modified: 2025-09-18T11:37:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/hello-plus/trunk/code/phpunit.xml#L10-L20`.

```xml
<phpunit
		bootstrap="tests/bootstrap.php"
		backupGlobals="false"
		colors="true"
		convertErrorsToExceptions="true"
		convertNoticesToExceptions="true"
		convertWarningsToExceptions="true"
>
	<php>
		<env name="PLUGIN_FILE" value="hello-plus.php"/>
		<env name="WP_TESTS_DIR" value="./tmp/wordpress-tests-lib"/>
		<env name="WP_TESTS_ELEMENTOR_DIR" value="./tmp/elementor/elementor.php"/>
	</php>

	<testsuites>
		<testsuite name="hello-plus">
			<directory prefix="test-" suffix=".php">./tests/phpunit/hello-plus/</directory>
		</testsuite>
	</testsuites>

	<filter>
		<whitelist>
			<directory suffix=".php">./</directory>
			<exclude>
				<directory>.github</directory>
				<directory>assets</directory>
				<directory>bin</directory>
				<directory>build</directory>
				<directory>node_modules</directory>
				<directory>vendor</directory>
				<directory>tests</directory>
			</exclude>
		</whitelist>
	</filter>

</phpunit>

```
