EnterpriseBundleTest.php 653 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\EnterpriseBundle;
  8. class EnterpriseBundleTest extends BundleBase {
  9. protected function setUp(): void {
  10. parent::setUp();
  11. $this->bundle = new EnterpriseBundle($this->l10n);
  12. $this->bundleIdentifier = 'EnterpriseBundle';
  13. $this->bundleName = 'Enterprise bundle';
  14. $this->bundleAppIds = [
  15. 'admin_audit',
  16. 'user_ldap',
  17. 'files_retention',
  18. 'files_automatedtagging',
  19. 'user_saml',
  20. 'files_accesscontrol',
  21. 'terms_of_service',
  22. ];
  23. }
  24. }