34 lines
678 B
PHP
34 lines
678 B
PHP
<?php
|
|
/**
|
|
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later.
|
|
* See the COPYING-README file.
|
|
*/
|
|
|
|
namespace Test\BackgroundJob;
|
|
|
|
class TestJob extends \OC\BackgroundJob\Job {
|
|
private $testCase;
|
|
|
|
/**
|
|
* @var callable $callback
|
|
*/
|
|
private $callback;
|
|
|
|
/**
|
|
* @param JobTest $testCase
|
|
* @param callable $callback
|
|
*/
|
|
public function __construct($testCase = null, $callback = null) {
|
|
$this->testCase = $testCase;
|
|
$this->callback = $callback;
|
|
}
|
|
|
|
public function run($argument) {
|
|
$this->testCase->markRun();
|
|
$callback = $this->callback;
|
|
$callback($argument);
|
|
}
|
|
}
|