File: phpunit.xml.dist

package info (click to toggle)
simplepie 1.3.1%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 5,388 kB
  • sloc: php: 28,216; sql: 32; makefile: 30; sh: 4
file content (21 lines) | stat: -rwxr-xr-x 523 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>

<phpunit colors="true" bootstrap="tests/bootstrap.php">
    <testsuites>
        <testsuite name="SimplePie Test Suite">
            <directory>./tests</directory>
        </testsuite>
        <testsuite name="Old Tests">
			<file>tests/oldtests.php</file>
        </testsuite>
    </testsuites>

	<filter>
		<blacklist>
			<directory suffix=".php">tests</directory>
		</blacklist>
		<whitelist>
			<directory suffix=".php">SimplePie</directory>
		</whitelist>
	</filter>
</phpunit>