summaryrefslogtreecommitdiffstats
path: root/tests/lib/Accounts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/Accounts')
-rw-r--r--tests/lib/Accounts/AccountPropertyTest.php3
-rw-r--r--tests/lib/Accounts/AccountTest.php2
-rw-r--r--tests/lib/Accounts/AccountsManagerTest.php7
-rw-r--r--tests/lib/Accounts/HooksTest.php4
4 files changed, 2 insertions, 14 deletions
diff --git a/tests/lib/Accounts/AccountPropertyTest.php b/tests/lib/Accounts/AccountPropertyTest.php
index 988fd64001d..afd807a44b4 100644
--- a/tests/lib/Accounts/AccountPropertyTest.php
+++ b/tests/lib/Accounts/AccountPropertyTest.php
@@ -33,7 +33,6 @@ use Test\TestCase;
* @package Test\Accounts
*/
class AccountPropertyTest extends TestCase {
-
public function testConstructor() {
$accountProperty = new AccountProperty(
IAccountManager::PROPERTY_WEBSITE,
@@ -97,6 +96,4 @@ class AccountPropertyTest extends TestCase {
'verified' => IAccountManager::VERIFIED
], $accountProperty->jsonSerialize());
}
-
-
}
diff --git a/tests/lib/Accounts/AccountTest.php b/tests/lib/Accounts/AccountTest.php
index 6d0e187c433..11b13637bd0 100644
--- a/tests/lib/Accounts/AccountTest.php
+++ b/tests/lib/Accounts/AccountTest.php
@@ -35,7 +35,6 @@ use Test\TestCase;
* @package Test\Accounts
*/
class AccountTest extends TestCase {
-
public function testConstructor() {
$user = $this->createMock(IUser::class);
$account = new Account($user);
@@ -108,5 +107,4 @@ class AccountTest extends TestCase {
$this->assertEquals($properties, $account->jsonSerialize());
}
-
}
diff --git a/tests/lib/Accounts/AccountsManagerTest.php b/tests/lib/Accounts/AccountsManagerTest.php
index 5bed1ff74fb..76abeb5b495 100644
--- a/tests/lib/Accounts/AccountsManagerTest.php
+++ b/tests/lib/Accounts/AccountsManagerTest.php
@@ -80,7 +80,6 @@ class AccountsManagerTest extends TestCase {
->setConstructorArgs([$this->connection, $this->eventDispatcher, $this->jobList, $this->logger])
->setMethods($mockedMethods)
->getMock();
-
}
/**
@@ -162,9 +161,8 @@ class AccountsManagerTest extends TestCase {
->with($askUser, $expectedData);
}
- if(empty($expectedData)) {
+ if (empty($expectedData)) {
$accountManager->expects($this->never())->method('addMissingDefaultValues');
-
} else {
$accountManager->expects($this->once())->method('addMissingDefaultValues')->with($expectedData)
->willReturn($expectedData);
@@ -215,7 +213,6 @@ class AccountsManagerTest extends TestCase {
}
public function testAddMissingDefaultValues() {
-
$accountManager = $this->getInstance();
$input = [
@@ -234,7 +231,6 @@ class AccountsManagerTest extends TestCase {
}
private function addDummyValuesToTable($uid, $data) {
-
$query = $this->connection->getQueryBuilder();
$query->insert($this->table)
->values(
@@ -294,5 +290,4 @@ class AccountsManagerTest extends TestCase {
->willReturn($data);
$this->assertEquals($expected, $accountManager->getAccount($user));
}
-
}
diff --git a/tests/lib/Accounts/HooksTest.php b/tests/lib/Accounts/HooksTest.php
index 433ecdedcf4..a0360404d72 100644
--- a/tests/lib/Accounts/HooksTest.php
+++ b/tests/lib/Accounts/HooksTest.php
@@ -33,7 +33,7 @@ use Test\TestCase;
* @package Test\Accounts
* @group DB
*/
-class HooksTest extends TestCase {
+class HooksTest extends TestCase {
/** @var ILogger | \PHPUnit_Framework_MockObject_MockObject */
private $logger;
@@ -89,7 +89,6 @@ class HooksTest extends TestCase {
}
$this->hooks->changeUserHook($params);
-
}
public function dataTestChangeUserHook() {
@@ -151,5 +150,4 @@ class HooksTest extends TestCase {
$result = $this->invokePrivate($hooks, 'getAccountManager');
$this->assertInstanceOf(AccountManager::class, $result);
}
-
}