Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@owncloud.com>2013-09-05 04:45:52 +0400
committerAndreas Fischer <bantu@owncloud.com>2013-09-24 01:59:35 +0400
commit1751340164a25d3e36918a2d68552097387b9336 (patch)
treec5f2f124d6f52f1a75c936b17635f2be5a135840 /tests
parenta551bfc9ff9fd3800febe0bdd704df7614bf487b (diff)
Coding style: { for methods start are supposed to be on the same line.
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/share/share.php18
1 files changed, 6 insertions, 12 deletions
diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php
index 98f30452011..c35e608df12 100644
--- a/tests/lib/share/share.php
+++ b/tests/lib/share/share.php
@@ -124,8 +124,7 @@ class Test_Share extends PHPUnit_Framework_TestCase {
}
}
- protected function shareUserOneTestFileWithUserTwo()
- {
+ protected function shareUserOneTestFileWithUserTwo() {
OC_User::setUserId($this->user1);
$this->assertTrue(
OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\PERMISSION_READ),
@@ -285,8 +284,7 @@ class Test_Share extends PHPUnit_Framework_TestCase {
$this->assertEquals(array('test1.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET));
}
- public function testShareWithUserExpirationExpired()
- {
+ public function testShareWithUserExpirationExpired() {
$this->shareUserOneTestFileWithUserTwo();
OC_User::setUserId($this->user1);
@@ -302,8 +300,7 @@ class Test_Share extends PHPUnit_Framework_TestCase {
);
}
- public function testShareWithUserExpirationValid()
- {
+ public function testShareWithUserExpirationValid() {
$this->shareUserOneTestFileWithUserTwo();
OC_User::setUserId($this->user1);
@@ -320,8 +317,7 @@ class Test_Share extends PHPUnit_Framework_TestCase {
);
}
- protected function shareUserOneTestFileWithGroupOne()
- {
+ protected function shareUserOneTestFileWithGroupOne() {
OC_User::setUserId($this->user1);
$this->assertTrue(
OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group1, OCP\PERMISSION_READ),
@@ -489,8 +485,7 @@ class Test_Share extends PHPUnit_Framework_TestCase {
$this->assertEquals(array(), OCP\Share::getItemsShared('test'));
}
- public function testShareWithGroupExpirationExpired()
- {
+ public function testShareWithGroupExpirationExpired() {
$this->shareUserOneTestFileWithGroupOne();
OC_User::setUserId($this->user1);
@@ -512,8 +507,7 @@ class Test_Share extends PHPUnit_Framework_TestCase {
);
}
- public function testShareWithGroupExpirationValid()
- {
+ public function testShareWithGroupExpirationValid() {
$this->shareUserOneTestFileWithGroupOne();
OC_User::setUserId($this->user1);