summaryrefslogtreecommitdiffstats
path: root/tests/Core/Controller
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-10-06 14:11:04 +0200
committerJoas Schilling <coding@schilljs.com>2016-10-06 14:11:04 +0200
commited30b1f64537e94fb9874cd5f52be03c5e66899b (patch)
tree6abbf7826457b8ffec3af759f35646145bf1e6e4 /tests/Core/Controller
parentb130a0ee09f3f6868dc49f1ed4e2cfff88a37c40 (diff)
downloadnextcloud-server-ed30b1f64537e94fb9874cd5f52be03c5e66899b.tar.gz
nextcloud-server-ed30b1f64537e94fb9874cd5f52be03c5e66899b.zip
Use our base class everywhere
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/Core/Controller')
-rw-r--r--tests/Core/Controller/LostControllerTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Core/Controller/LostControllerTest.php b/tests/Core/Controller/LostControllerTest.php
index 177e41061a4..2c9b078908a 100644
--- a/tests/Core/Controller/LostControllerTest.php
+++ b/tests/Core/Controller/LostControllerTest.php
@@ -40,7 +40,7 @@ use PHPUnit_Framework_MockObject_MockObject;
*
* @package OC\Core\Controller
*/
-class LostControllerTest extends \PHPUnit_Framework_TestCase {
+class LostControllerTest extends \Test\TestCase {
/** @var LostController */
private $lostController;
@@ -68,6 +68,7 @@ class LostControllerTest extends \PHPUnit_Framework_TestCase {
private $request;
protected function setUp() {
+ parent::setUp();
$this->existingUser = $this->getMockBuilder('OCP\IUser')
->disableOriginalConstructor()->getMock();