aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/App/AppStore/Bundles
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/App/AppStore/Bundles')
-rw-r--r--tests/lib/App/AppStore/Bundles/BundleBase.php7
-rw-r--r--tests/lib/App/AppStore/Bundles/BundleFetcherTest.php7
-rw-r--r--tests/lib/App/AppStore/Bundles/EducationBundleTest.php4
-rw-r--r--tests/lib/App/AppStore/Bundles/EnterpriseBundleTest.php1
-rw-r--r--tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php1
-rw-r--r--tests/lib/App/AppStore/Bundles/SocialSharingBundleTest.php1
6 files changed, 14 insertions, 7 deletions
diff --git a/tests/lib/App/AppStore/Bundles/BundleBase.php b/tests/lib/App/AppStore/Bundles/BundleBase.php
index 4c31c49cdb1..71acaa052b3 100644
--- a/tests/lib/App/AppStore/Bundles/BundleBase.php
+++ b/tests/lib/App/AppStore/Bundles/BundleBase.php
@@ -1,4 +1,5 @@
<?php
+
/**
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
@@ -31,15 +32,15 @@ abstract class BundleBase extends TestCase {
});
}
- public function testGetIdentifier() {
+ public function testGetIdentifier(): void {
$this->assertSame($this->bundleIdentifier, $this->bundle->getIdentifier());
}
- public function testGetName() {
+ public function testGetName(): void {
$this->assertSame($this->bundleName, $this->bundle->getName());
}
- public function testGetAppIdentifiers() {
+ public function testGetAppIdentifiers(): void {
$this->assertSame($this->bundleAppIds, $this->bundle->getAppIdentifiers());
}
}
diff --git a/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php b/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php
index 484b81b5197..ab6f5502fde 100644
--- a/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php
+++ b/tests/lib/App/AppStore/Bundles/BundleFetcherTest.php
@@ -1,4 +1,5 @@
<?php
+
/**
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
@@ -32,7 +33,7 @@ class BundleFetcherTest extends TestCase {
);
}
- public function testGetBundles() {
+ public function testGetBundles(): void {
$expected = [
new EnterpriseBundle($this->l10n),
new HubBundle($this->l10n),
@@ -44,13 +45,13 @@ class BundleFetcherTest extends TestCase {
$this->assertEquals($expected, $this->bundleFetcher->getBundles());
}
- public function testGetBundleByIdentifier() {
+ public function testGetBundleByIdentifier(): void {
$this->assertEquals(new EnterpriseBundle($this->l10n), $this->bundleFetcher->getBundleByIdentifier('EnterpriseBundle'));
$this->assertEquals(new GroupwareBundle($this->l10n), $this->bundleFetcher->getBundleByIdentifier('GroupwareBundle'));
}
- public function testGetBundleByIdentifierWithException() {
+ public function testGetBundleByIdentifierWithException(): void {
$this->expectException(\BadMethodCallException::class);
$this->expectExceptionMessage('Bundle with specified identifier does not exist');
diff --git a/tests/lib/App/AppStore/Bundles/EducationBundleTest.php b/tests/lib/App/AppStore/Bundles/EducationBundleTest.php
index a4508e6156b..88a3b2d8d67 100644
--- a/tests/lib/App/AppStore/Bundles/EducationBundleTest.php
+++ b/tests/lib/App/AppStore/Bundles/EducationBundleTest.php
@@ -1,4 +1,5 @@
<?php
+
/**
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
@@ -13,7 +14,7 @@ class EducationBundleTest extends BundleBase {
parent::setUp();
$this->bundle = new EducationBundle($this->l10n);
$this->bundleIdentifier = 'EducationBundle';
- $this->bundleName = 'Education Edition';
+ $this->bundleName = 'Education bundle';
$this->bundleAppIds = [
'dashboard',
'circles',
@@ -21,6 +22,7 @@ class EducationBundleTest extends BundleBase {
'announcementcenter',
'quota_warning',
'user_saml',
+ 'whiteboard',
];
}
}
diff --git a/tests/lib/App/AppStore/Bundles/EnterpriseBundleTest.php b/tests/lib/App/AppStore/Bundles/EnterpriseBundleTest.php
index 464d48102b2..a02ee11d15c 100644
--- a/tests/lib/App/AppStore/Bundles/EnterpriseBundleTest.php
+++ b/tests/lib/App/AppStore/Bundles/EnterpriseBundleTest.php
@@ -1,4 +1,5 @@
<?php
+
/**
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
diff --git a/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php b/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php
index 5ba9ee4c4e1..be756dbc55e 100644
--- a/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php
+++ b/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php
@@ -1,4 +1,5 @@
<?php
+
/**
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
diff --git a/tests/lib/App/AppStore/Bundles/SocialSharingBundleTest.php b/tests/lib/App/AppStore/Bundles/SocialSharingBundleTest.php
index a2681cb0238..f3437fb51e6 100644
--- a/tests/lib/App/AppStore/Bundles/SocialSharingBundleTest.php
+++ b/tests/lib/App/AppStore/Bundles/SocialSharingBundleTest.php
@@ -1,4 +1,5 @@
<?php
+
/**
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later