SocialSharingBundleTest.php 631 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\SocialSharingBundle;
  8. class SocialSharingBundleTest extends BundleBase {
  9. protected function setUp(): void {
  10. parent::setUp();
  11. $this->bundle = new SocialSharingBundle($this->l10n);
  12. $this->bundleIdentifier = 'SocialSharingBundle';
  13. $this->bundleName = 'Social sharing bundle';
  14. $this->bundleAppIds = [
  15. 'socialsharing_twitter',
  16. 'socialsharing_facebook',
  17. 'socialsharing_email',
  18. 'socialsharing_diaspora',
  19. ];
  20. }
  21. }