i am picking up phpunit. i am at the phpunit.xml file.
i want to understand what does each element do.
<testsuite name="application">
<directory>application</directory>
</testsuite>
the directory refers to the dir containing all the *Test.php files?
<filter>
<whitelist>
<directory suffix=".php">../application</directory>
<exclude>
<directory suffix=".php">../library</directory>
<directory suffix=".phtml">../application</directory>
<file>../application/bootstrap.php</file>
<file>../application/scripts/doctrine.php</file>
</exclude>
</whitelist>
</filter>
whilelist refers to the application files (not test.php) that are supposed to be covered? so in this example, i am saying i want all php files in ../application to be covered, except php files in ../library, phtml files in ../application, and the bootstrap.php and doctrine.php?