ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
HistCompareTest.php
Go to the documentation of this file.
1
<?php
2
19
use
PHPUnit\Framework\TestCase
;
20
26
class
HistCompareTest
extends
TestCase
27
{
28
//protected $backupGlobals = false;
29
30
protected
function
setUp
(): void
31
{
32
parent::setUp();
33
}
34
35
protected
function
tearDown
(): void
36
{
37
}
38
42
public
function
testCompare
(): void
43
{
44
$this->assertEquals(
45
-1,
46
ilHistory::_compareHistArray
(
47
[
"date"
=>
"2021-12-01"
],
48
[
"date"
=>
"2021-12-03"
],
49
)
50
);
51
}
52
56
public
function
testCompare2
(): void
57
{
58
$this->assertEquals(
59
1,
60
ilHistory::_compareHistArray
(
61
[
"date"
=>
"2021-12-01"
],
62
[
"date"
=>
"2021-11-03"
],
63
)
64
);
65
}
66
70
public
function
testCompare3
(): void
71
{
72
$this->assertEquals(
73
0,
74
ilHistory::_compareHistArray
(
75
[
"date"
=>
"2021-12-03"
],
76
[
"date"
=>
"2021-12-03"
],
77
)
78
);
79
}
80
}
HistCompareTest\tearDown
tearDown()
Definition:
HistCompareTest.php:35
HistCompareTest\setUp
setUp()
Definition:
HistCompareTest.php:30
HistCompareTest\testCompare
testCompare()
Test compare.
Definition:
HistCompareTest.php:42
HistCompareTest\testCompare3
testCompare3()
Test compare 3.
Definition:
HistCompareTest.php:70
ilHistory\_compareHistArray
static _compareHistArray(array $a, array $b)
Definition:
class.ilHistory.php:167
HistCompareTest
Test clipboard repository.
Definition:
HistCompareTest.php:26
HistCompareTest\testCompare2
testCompare2()
Test compare 2.
Definition:
HistCompareTest.php:56
TestCase
TestCase
components
ILIAS
History
tests
HistCompareTest.php
Generated on Thu Apr 3 2025 23:03:04 for ILIAS by
1.8.13 (using
Doxyfile
)