diff options
Diffstat (limited to 'tests/lib/App/AppStore/Bundles/EducationBundleTest.php')
-rw-r--r-- | tests/lib/App/AppStore/Bundles/EducationBundleTest.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/lib/App/AppStore/Bundles/EducationBundleTest.php b/tests/lib/App/AppStore/Bundles/EducationBundleTest.php new file mode 100644 index 00000000000..88a3b2d8d67 --- /dev/null +++ b/tests/lib/App/AppStore/Bundles/EducationBundleTest.php @@ -0,0 +1,28 @@ +<?php + +/** + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +namespace Test\App\AppStore\Bundles; + +use OC\App\AppStore\Bundles\EducationBundle; + +class EducationBundleTest extends BundleBase { + protected function setUp(): void { + parent::setUp(); + $this->bundle = new EducationBundle($this->l10n); + $this->bundleIdentifier = 'EducationBundle'; + $this->bundleName = 'Education bundle'; + $this->bundleAppIds = [ + 'dashboard', + 'circles', + 'groupfolders', + 'announcementcenter', + 'quota_warning', + 'user_saml', + 'whiteboard', + ]; + } +} |