GroupwareBundleTest.php 549 B

123456789101112131415161718192021222324
  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\GroupwareBundle;
  8. class GroupwareBundleTest extends BundleBase {
  9. protected function setUp(): void {
  10. parent::setUp();
  11. $this->bundle = new GroupwareBundle($this->l10n);
  12. $this->bundleIdentifier = 'GroupwareBundle';
  13. $this->bundleName = 'Groupware bundle';
  14. $this->bundleAppIds = [
  15. 'calendar',
  16. 'contacts',
  17. 'deck',
  18. 'mail'
  19. ];
  20. }
  21. }