fix test report

This commit is contained in:
Dennis Eichhorn 2019-12-07 23:53:24 +01:00
parent 5c01daec92
commit 33566670b7

View File

@ -441,7 +441,8 @@ return [
'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testFlushExpired' => ['description' => 'Cach data can be flushed by expiration date', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testBadCacheStatus' => ['description' => 'A bad cache status will prevent all cache actions', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testInvalidCachePath' => ['description' => 'A invalid cache connection will throw an InvalidConnectionConfigException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testInvalidDataType' => ['description' => 'A invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testInvalidDataTypeAdd' => ['description' => 'Adding a invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testInvalidDataTypeSet' => ['description' => 'Setting a invaliddata type will throw an InvalidArgumentException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest' => ['description' => 'Memcached connection', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testDefault' => ['description' => 'The memcached connection has the expected default values after initialization', 'type' => 'framework'],
@ -462,7 +463,8 @@ return [
'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testForceDeleteUnexpired' => ['description' => 'Unexpired data can be force deleted with lower expiration date', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testFlushExpired' => ['description' => 'Cach data can be flushed by expiration date', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testBadCacheStatus' => ['description' => 'A bad cache status will prevent all cache actions', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testInvalidDataType' => ['description' => 'A invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testInvalidDataTypeAdd' => ['description' => 'Adding a invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testInvalidDataTypeSet' => ['description' => 'Setting a invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testInvalidCacheHost' => ['description' => 'A invalid host throws a InvalidConnectionConfigException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testInvalidCachePort' => ['description' => 'A invalid port throws a InvalidConnectionConfigException', 'type' => 'framework'],
@ -485,7 +487,8 @@ return [
'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testForceDeleteUnexpired' => ['description' => 'Unexpired data can be force deleted with lower expiration date', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testFlushExpired' => ['description' => 'Cach data can be flushed by expiration date', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testBadCacheStatus' => ['description' => 'A bad cache status will prevent all cache actions', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidDataType' => ['description' => 'A invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidDataTypeAdd' => ['description' => 'Adding a invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidDataTypeSet' => ['description' => 'Setting a invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidCacheHost' => ['description' => 'A invalid host throws a InvalidConnectionConfigException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidCachePort' => ['description' => 'A invalid port throws a InvalidConnectionConfigException', 'type' => 'framework'],
'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidCacheDatabase' => ['description' => 'A invalid database throws a InvalidConnectionConfigException', 'type' => 'framework'],