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
PasswordTest.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 2018 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
3
4
require_once(
"libs/composer/vendor/autoload.php"
);
5
6
use
ILIAS\Data
;
7
use
PHPUnit\Framework\TestCase
;
8
14
class
PasswordTest
extends
TestCase
15
{
16
protected
function
setUp
() : void
17
{
18
$this->f =
new
Data\Factory();
19
}
20
21
public
function
testValue
()
22
{
23
$pass
=
'secret'
;
24
$pwd = $this->f->password(
$pass
);
25
$this->assertEquals(
$pass
, $pwd->toString());
26
}
27
28
public
function
testWrongParam
()
29
{
30
try
{
31
$pwd = $this->f->password(123);
32
$this->assertFalse(
"This should not happen"
);
33
}
catch
(\
InvalidArgumentException
$e
) {
34
$this->assertTrue(
true
);
35
}
36
}
37
}
PasswordTest\testWrongParam
testWrongParam()
Definition:
PasswordTest.php:28
$pass
$pass
Definition:
UtfNormalGenerate.php:136
Vendor\Package\$e
$e
Definition:
example_cleaned.php:31
PasswordTest
Tests working with color data object.
Definition:
PasswordTest.php:14
PasswordTest\setUp
setUp()
Definition:
PasswordTest.php:16
PasswordTest\testValue
testValue()
Definition:
PasswordTest.php:21
InvalidArgumentException
TestCase
ILIAS\Data
Definition:
Alphanumeric.php:10
tests
Data
PasswordTest.php
Generated on Thu Apr 3 2025 20:01:23 for ILIAS by
1.8.13 (using
Doxyfile
)