12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit backupGlobals="false"
- backupStaticAttributes="false"
- bootstrap="tests/bootstrap.php"
- colors="true"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- processIsolation="false"
- stopOnFailure="false"
- syntaxCheck="false">
- <testsuites>
- <testsuite name="unit">
- <directory>tests</directory>
- </testsuite>
- </testsuites>
- <listeners>
- <listener file="vendor/bolt/bolt/tests/phpunit/BoltListener.php" class="Bolt\Tests\BoltListener">
- <arguments>
- <!-- Configuration files. Can be either .yml or .yml.dist files -->
- <!-- Locations can be relative to TEST_ROOT directory, the Bolt directory, or an absolute path -->
- <array>
- <element key="config">
- <string>vendor/bolt/bolt/app/config/config.yml.dist</string>
- </element>
- <element key="contenttypes">
- <string>vendor/bolt/bolt/app/config/contenttypes.yml.dist</string>
- </element>
- <element key="menu">
- <string>vendor/bolt/bolt/app/config/menu.yml.dist</string>
- </element>
- <element key="permissions">
- <string>vendor/bolt/bolt/app/config/permissions.yml.dist</string>
- </element>
- <element key="routing">
- <string>vendor/bolt/bolt/app/config/routing.yml.dist</string>
- </element>
- <element key="taxonomy">
- <string>vendor/bolt/bolt/app/config/taxonomy.yml.dist</string>
- </element>
- </array>
- <!-- Theme directory. Can be relative to TEST_ROOT directory, the Bolt directory, or an absolute path -->
- <array>
- <element key="theme">
- <string>theme/base-2014</string>
- </element>
- </array>
- <!-- The Bolt SQLite database, leave empty to use the one bundled with Bolt's repository -->
- <!-- Location can be relative to TEST_ROOT directory, the Bolt directory, or an absolute path -->
- <array>
- <element key="boltdb">
- <string>vendor/bolt/bolt/tests/phpunit/unit/resources/db/bolt.db</string>
- </element>
- </array>
- <!-- Reset the cache and test temporary directories -->
- <boolean>true</boolean>
- <!-- Create timer output in app/cache/phpunit-test-timer.txt -->
- <boolean>true</boolean>
- </arguments>
- </listener>
- </listeners>
- </phpunit>
|