LuckyCoinkydink/tests/config.xml.dist
Sebastian Bergmann 12d42f2918 Reorganize test suite.
- Split testLoginLogout() into testBadLogin() and testLoginLogout().
- Mark testCreateSimpleArticle() as incomplete until the popup
  window opened by clicking on VIEW is handled correctly.
- Disable mod_rewrite so that the test suite does not depend on it.
- Remove superfluous check for Testing_Selenium class.
- Migrate TestConfiguration.php.dist to config.xml.dist.
  - Configure whitelist for code coverage information.
    - Be conservative for now and only add include/ and plugins/
      directories for now.
    - Set addUncoveredFilesFromWhitelist="false" because not all
      files are loadable (yet).
- Add documentation for code coverage reporting.
2007-12-13 14:14:56 +00:00

28 lines
1002 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit>
<filter>
<whitelist addUncoveredFilesFromWhitelist="false">
<directory>../include</directory>
<directory>../plugins</directory>
<exclude>
<file>../include/db/mysql.inc.php</file>
<file>../include/db/mysqli.inc.php</file>
<file>../include/db/pdo-postgres.inc.php</file>
<file>../include/db/postgres.inc.php</file>
<file>../include/db/mysql.inc.php</file>
<file>../include/db/sqlite.inc.php</file>
<file>../include/db/sqlrelay.inc.php</file>
</exclude>
</whitelist>
</filter>
<php>
<var name="S9Y_INSTALLDIR" value="http://localhost/s9y"/>
<var name="S9Y_LANG" value="en"/>
<var name="S9Y_SELENIUM_ENABLED" value="true"/>
<var name="S9Y_SELENIUM_HOST" value="127.0.0.1"/>
<var name="S9Y_SELENIUM_PORT" value="4444"/>
<var name="S9Y_SELENIUM_BROWSER" value="*firefox /usr/lib/firefox/firefox-bin"/>
</php>
</phpunit>