2017-04-26 16:05:58 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2024-05-10 15:09:14 +02:00
|
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2017-04-26 16:05:58 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\App\AppStore\Bundles;
|
|
|
|
|
|
|
|
use OC\App\AppStore\Bundles\SocialSharingBundle;
|
|
|
|
|
|
|
|
class SocialSharingBundleTest extends BundleBase {
|
2019-11-27 15:27:18 +01:00
|
|
|
protected function setUp(): void {
|
2017-04-26 16:05:58 +02: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',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|