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
StorageOnPathWrapperTest.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2019 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
5
namespace
ILIAS\Tests\Setup\Metrics
;
6
7
use
ILIAS\Setup\Metrics
;
8
use
ILIAS\Setup\Metrics\Metric
as M;
9
use
PHPUnit\Framework\TestCase
;
10
11
class
StorageOnPathWrapperTest
extends
TestCase
12
{
13
const
PATH
=
"path"
;
14
15
public
function
setUp
() : void
16
{
17
$this->storage = $this->createMock(Metrics\Storage::class);
18
$this->wrapper =
new
Metrics\StorageOnPathWrapper
(
self::PATH
, $this->storage);
19
}
20
21
public
function
testStoresToPath
()
22
{
23
$key =
"key"
;
24
$m =
new
M(M::STABILITY_CONFIG, M::TYPE_BOOL,
true
,
"desc"
);
25
26
$this->storage->expects($this->once())
27
->method(
"store"
)
28
->with(
self::PATH
.
"."
. $key, $m);
29
30
$this->wrapper->store($key, $m);
31
}
32
}
PATH
const PATH
Definition:
proxy_ylocal.php:8
ILIAS\Tests\Setup\Metrics\StorageOnPathWrapperTest\PATH
const PATH
Definition:
StorageOnPathWrapperTest.php:13
ILIAS\Tests\Setup\Metrics\StorageOnPathWrapperTest\setUp
setUp()
Definition:
StorageOnPathWrapperTest.php:15
ILIAS\Setup\Metrics\Metric
A metric is something we can measure about the system.
Definition:
Metric.php:17
ILIAS\Tests\Setup\Metrics\StorageOnPathWrapperTest
Definition:
StorageOnPathWrapperTest.php:11
ILIAS\Setup\Metrics
Definition:
ArrayStorage.php:5
ILIAS\Setup\Metrics\StorageOnPathWrapper
Definition:
StorageOnPathWrapper.php:7
ILIAS\Tests\Setup\Metrics\StorageOnPathWrapperTest\testStoresToPath
testStoresToPath()
Definition:
StorageOnPathWrapperTest.php:21
TestCase
ILIAS\Tests\Setup\Metrics
Definition:
ArrayStorageTest.php:5
tests
Setup
Metrics
StorageOnPathWrapperTest.php
Generated on Thu Apr 3 2025 21:01:39 for ILIAS by
1.8.13 (using
Doxyfile
)