ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
ilMathTest.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
use
PHPUnit\Framework\TestCase
;
5
10
class
ilMathTest
extends
TestCase
11
{
15
protected
$eval_math
;
16
20
protected
function
setUp
() : void
21
{
22
require_once
'Services/Math/classes/class.ilMath.php'
;
23
require_once
'Services/Math/classes/class.EvalMath.php'
;
24
$this->eval_math =
new
EvalMath
();
25
}
26
30
public
function
testGcd
(
$a
,
$b
,
$result
)
31
{
32
$this->assertEquals(
$result
,
ilMath::getGreatestCommonDivisor
(
$a
,
$b
));
33
}
34
38
public
function
gcdData
()
39
{
40
return
[
41
[
'1254'
,
'5298'
,
'6'
],
42
[
'41414124'
,
'41414124'
,
'41414124'
]
43
];
44
}
45
}
ilMathTest\gcdData
gcdData()
Definition:
ilMathTest.php:38
$result
$result
Definition:
CleanUpTest.php:463
ilMathTest
Definition:
ilMathTest.php:10
ilMathTest\$eval_math
$eval_math
Definition:
ilMathTest.php:15
EvalMath
Definition:
class.EvalMath.php:89
ilMathTest\setUp
setUp()
Definition:
ilMathTest.php:20
Vendor\Package\$b
$b
Definition:
example_cleaned.php:31
ilMathTest\testGcd
testGcd($a, $b, $result)
gcdData
Definition:
ilMathTest.php:30
Vendor\Package\$a
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
Definition:
example_cleaned.php:31
ilMath\getGreatestCommonDivisor
static getGreatestCommonDivisor($a, $b)
Definition:
class.ilMath.php:119
TestCase
Services
Math
test
ilMathTest.php
Generated on Thu Apr 3 2025 20:01:09 for ILIAS by
1.8.13 (using
Doxyfile
)