2017-07-25 09:46:21 -04:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2017-07-25 09:46:21 -04:00
|
|
|
/**
|
2024-05-10 09:09:14 -04:00
|
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2017-07-25 09:46:21 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Test\App\AppStore\Bundles;
|
|
|
|
|
|
|
|
|
|
use OC\App\AppStore\Bundles\EducationBundle;
|
|
|
|
|
|
|
|
|
|
class EducationBundleTest extends BundleBase {
|
2019-11-27 09:27:18 -05:00
|
|
|
protected function setUp(): void {
|
2017-07-25 09:46:21 -04:00
|
|
|
parent::setUp();
|
|
|
|
|
$this->bundle = new EducationBundle($this->l10n);
|
|
|
|
|
$this->bundleIdentifier = 'EducationBundle';
|
2024-04-29 04:40:40 -04:00
|
|
|
$this->bundleName = 'Education bundle';
|
2017-07-25 09:46:21 -04:00
|
|
|
$this->bundleAppIds = [
|
|
|
|
|
'dashboard',
|
|
|
|
|
'circles',
|
|
|
|
|
'groupfolders',
|
|
|
|
|
'announcementcenter',
|
|
|
|
|
'quota_warning',
|
|
|
|
|
'user_saml',
|
2024-09-12 03:08:46 -04:00
|
|
|
'whiteboard',
|
2017-07-25 09:46:21 -04:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|