Merge pull request #24840 from owncloud/fix-missing-ext-str-import
Fix missing use statements in ext. str. tests
This commit is contained in:
commit
299954c03d
|
@ -23,6 +23,7 @@
|
|||
namespace OCA\Files_External\Tests\Controller;
|
||||
|
||||
use \OCA\Files_External\Controller\UserStoragesController;
|
||||
use OCA\Files_External\Lib\StorageConfig;
|
||||
use \OCP\AppFramework\Http;
|
||||
use \OCA\Files_External\Service\BackendService;
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
*/
|
||||
namespace OCA\Files_External\Tests\Service;
|
||||
|
||||
use OCA\Files_External\Lib\StorageConfig;
|
||||
use OCA\Files_External\NotFoundException;
|
||||
use OCA\Files_External\Service\StoragesService;
|
||||
use OCA\Files_External\Service\UserGlobalStoragesService;
|
||||
|
|
|
@ -8,13 +8,13 @@
|
|||
<testsuite name='ownCloud files external'>
|
||||
<directory suffix=".php">../apps/files_external/tests</directory>
|
||||
<!-- exclude backends as they are called separately -->
|
||||
<exclude>../apps/files_external/tests/storage/</exclude>
|
||||
<exclude>../apps/files_external/tests/Storage/</exclude>
|
||||
</testsuite>
|
||||
<!-- filters for code coverage -->
|
||||
<filter>
|
||||
<!-- whitelist processUncoveredFilesFromWhitelist="true" -->
|
||||
<whitelist>
|
||||
<file>../lib/private/files/storage/dav.php</file>
|
||||
<file>../lib/private/Files/Storage/DAV.php</file>
|
||||
<directory suffix=".php">../apps/files_external</directory>
|
||||
<exclude>
|
||||
<directory suffix=".php">../apps/files_external/l10n</directory>
|
||||
|
|
Loading…
Reference in New Issue