ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
BasicObserverTest.php
Go to the documentation of this file.
1
<?php
24
namespace
BackgroundTasks\Implementation\Observer
;
25
26
use
ILIAS\BackgroundTasks\Exceptions\Exception
;
27
use
ILIAS\BackgroundTasks\Implementation\Bucket\BasicBucket
;
28
use
ILIAS\BackgroundTasks\Implementation\Persistence\BasicPersistence
;
29
use
ILIAS\BackgroundTasks\Implementation\Tasks\DownloadInteger
;
30
use
Mockery\Adapter\Phpunit\MockeryTestCase
;
31
32
require_once(
"libs/composer/vendor/autoload.php"
);
33
34
class
BasicObserverTest
extends
MockeryTestCase
35
{
36
public
function
testCheckIntegrity
()
37
{
38
$this->expectException(Exception::class);
39
40
$observer =
new
BasicBucket
();
41
$observer->setTask(
new
DownloadInteger
());
42
BasicPersistence::instance
($this->createMock(\ilDBInterface::class))->saveBucketAndItsTasks($observer);
43
}
44
}
BackgroundTasks\Implementation\Observer\BasicObserverTest
Definition:
BasicObserverTest.php:34
MockeryTestCase
ILIAS\BackgroundTasks\Implementation\Persistence\BasicPersistence\instance
static instance(\ilDBInterface $db)
Definition:
BasicPersistence.php:65
BackgroundTasks\Implementation\Observer
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
BasicObserverTest.php:24
ILIAS\BackgroundTasks\Implementation\Tasks\DownloadInteger
Definition:
DownloadInteger.php:24
Exception
ILIAS\BackgroundTasks\Implementation\Bucket\BasicBucket
Definition:
BasicBucket.php:12
BasicBucket
BasicPersistence
BackgroundTasks\Implementation\Observer\BasicObserverTest\testCheckIntegrity
testCheckIntegrity()
Definition:
BasicObserverTest.php:36
DownloadInteger
tests
BackgroundTasks
Implementation
Observer
BasicObserverTest.php
Generated on Thu Apr 3 2025 21:01:38 for ILIAS by
1.8.13 (using
Doxyfile
)