35 lines
675 B
PHP
35 lines
675 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 Job $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);
|
||
|
}
|
||
|
}
|