nextcloud/apps/files_trashbin/tests/BackgroundJob/ExpireTrashTest.php

45 lines
1.4 KiB
PHP
Raw Normal View History

2015-08-11 22:21:32 +03:00
<?php
/**
2016-07-21 17:49:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
* @author Joas Schilling <coding@schilljs.com>
* @author Roeland Jago Douma <roeland@famdouma.nl>
2015-08-11 22:21:32 +03:00
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
*
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
2016-05-12 10:48:53 +03:00
namespace OCA\Files_Trashbin\Tests\BackgroundJob;
2015-09-09 23:29:52 +03:00
use \OCA\Files_Trashbin\BackgroundJob\ExpireTrash;
2016-09-02 11:42:06 +03:00
use OCP\BackgroundJob\IJobList;
use OCP\IUserManager;
2015-08-11 22:21:32 +03:00
2016-05-12 10:48:53 +03:00
class ExpireTrashTest extends \Test\TestCase {
2015-08-11 22:21:32 +03:00
public function testConstructAndRun() {
2015-09-09 23:29:52 +03:00
$backgroundJob = new ExpireTrash(
2016-09-02 11:42:06 +03:00
$this->createMock(IUserManager::class),
2015-08-11 22:21:32 +03:00
$this->getMockBuilder('OCA\Files_Trashbin\Expiration')->disableOriginalConstructor()->getMock()
);
2016-09-02 11:42:06 +03:00
$jobList = $this->createMock(IJobList::class);
2015-08-11 22:21:32 +03:00
/** @var \OC\BackgroundJob\JobList $jobList */
$backgroundJob->execute($jobList);
$this->addToAssertionCount(1);
2015-08-11 22:21:32 +03:00
}
}