EducationBundleTest.php 625 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace Test\App\AppStore\Bundles;
  7. use OC\App\AppStore\Bundles\EducationBundle;
  8. class EducationBundleTest extends BundleBase {
  9. protected function setUp(): void {
  10. parent::setUp();
  11. $this->bundle = new EducationBundle($this->l10n);
  12. $this->bundleIdentifier = 'EducationBundle';
  13. $this->bundleName = 'Education bundle';
  14. $this->bundleAppIds = [
  15. 'dashboard',
  16. 'circles',
  17. 'groupfolders',
  18. 'announcementcenter',
  19. 'quota_warning',
  20. 'user_saml',
  21. 'whiteboard',
  22. ];
  23. }
  24. }