EducationBundleTest.php 609 B

1234567891011121314151617181920212223242526
  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 Edition';
  14. $this->bundleAppIds = [
  15. 'dashboard',
  16. 'circles',
  17. 'groupfolders',
  18. 'announcementcenter',
  19. 'quota_warning',
  20. 'user_saml',
  21. ];
  22. }
  23. }