aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/SetupTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/SetupTest.php')
-rw-r--r--tests/lib/SetupTest.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/lib/SetupTest.php b/tests/lib/SetupTest.php
index 5216d2a730a..b5e1b7000c3 100644
--- a/tests/lib/SetupTest.php
+++ b/tests/lib/SetupTest.php
@@ -47,7 +47,7 @@ class SetupTest extends \Test\TestCase {
->getMock();
}
- public function testGetSupportedDatabasesWithOneWorking() {
+ public function testGetSupportedDatabasesWithOneWorking(): void {
$this->config
->expects($this->once())
->method('getValue')
@@ -70,7 +70,7 @@ class SetupTest extends \Test\TestCase {
$this->assertSame($expectedResult, $result);
}
- public function testGetSupportedDatabasesWithNoWorking() {
+ public function testGetSupportedDatabasesWithNoWorking(): void {
$this->config
->expects($this->once())
->method('getValue')
@@ -90,7 +90,7 @@ class SetupTest extends \Test\TestCase {
$this->assertSame([], $result);
}
- public function testGetSupportedDatabasesWithAllWorking() {
+ public function testGetSupportedDatabasesWithAllWorking(): void {
$this->config
->expects($this->once())
->method('getValue')
@@ -116,7 +116,7 @@ class SetupTest extends \Test\TestCase {
}
- public function testGetSupportedDatabaseException() {
+ public function testGetSupportedDatabaseException(): void {
$this->expectException(\Exception::class);
$this->expectExceptionMessage('Supported databases are not properly configured.');
@@ -132,7 +132,7 @@ class SetupTest extends \Test\TestCase {
* @param $url
* @param $expected
*/
- public function testFindWebRootCli($url, $expected) {
+ public function testFindWebRootCli($url, $expected): void {
$cliState = \OC::$CLI;
$this->config