Abel Hoogeveen
80d0450f5c
- Working providers: Dummy, Redis and File - Component now delivers the selected storage based on its config file - Now provides ObjectStorageTest, a PSR CacheProvider compatible object to save and cache data in ObjectStorage
18 lines
794 B
XML
18 lines
794 B
XML
<?xml version="1.0"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="bootstrap.php" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" colors="false">
|
|
<coverage processUncoveredFiles="false">
|
|
<include>
|
|
<directory suffix=".php">../</directory>
|
|
</include>
|
|
<exclude>
|
|
<directory suffix=".php">../vendor/</directory>
|
|
<directory suffix=".php">../test/</directory>
|
|
</exclude>
|
|
</coverage>
|
|
<testsuites>
|
|
<testsuite name="ObjectStorage Suite">
|
|
<directory>./</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|