2017-04-26 10:05:58 -04:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2025-09-29 06:34:49 -04:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2017-04-26 10:05:58 -04:00
|
|
|
/**
|
2024-05-10 09:09:14 -04:00
|
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2017-04-26 10:05:58 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Test\App\AppStore\Bundles;
|
|
|
|
|
|
|
|
|
|
use OC\App\AppStore\Bundles\SocialSharingBundle;
|
|
|
|
|
|
|
|
|
|
class SocialSharingBundleTest extends BundleBase {
|
2019-11-27 09:27:18 -05:00
|
|
|
protected function setUp(): void {
|
2017-04-26 10:05:58 -04:00
|
|
|
parent::setUp();
|
|
|
|
|
$this->bundle = new SocialSharingBundle($this->l10n);
|
|
|
|
|
$this->bundleIdentifier = 'SocialSharingBundle';
|
|
|
|
|
$this->bundleName = 'Social sharing bundle';
|
|
|
|
|
$this->bundleAppIds = [
|
|
|
|
|
'socialsharing_twitter',
|
|
|
|
|
'socialsharing_facebook',
|
|
|
|
|
'socialsharing_email',
|
|
|
|
|
'socialsharing_diaspora',
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|