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
AlphanumericTest.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8
namespace
ILIAS\Data
;
9
10
use
ILIAS\Refinery\ConstraintViolationException
;
11
use
PHPUnit\Framework\TestCase
;
12
13
require_once(
'./libs/composer/vendor/autoload.php'
);
14
15
class
AlphanumericTest
extends
TestCase
16
{
17
public
function
testSimpleStringIsCorrectAlphanumericValueAndCanBeConvertedToString
()
18
{
19
$value =
new
Alphanumeric
(
'hello'
);
20
21
$this->assertSame(
'hello'
, $value->asString());
22
}
23
24
public
function
testIntegerIsAlphanumericValueAndCanBeConvertedToString
()
25
{
26
$value =
new
Alphanumeric
(6);
27
28
$this->assertSame(
'6'
, $value->asString());
29
}
30
31
public
function
testIntegerIsAlphanumericValue
()
32
{
33
$value =
new
Alphanumeric
(6);
34
35
$this->assertSame(6, $value->getValue());
36
}
37
38
public
function
testFloatIsAlphanumericValueAndCanBeConvertedToString
()
39
{
40
$value =
new
Alphanumeric
(6.0);
41
42
$this->assertSame(
'6'
, $value->asString());
43
}
44
45
public
function
testFloatIsAlphanumericValue
()
46
{
47
$value =
new
Alphanumeric
(6.0);
48
49
$this->assertSame(6.0, $value->getValue());
50
}
51
52
public
function
testTextIsNotAlphanumericAndWillThrowException
()
53
{
54
$this->expectNotToPerformAssertions();
55
56
try
{
57
$value =
new
Alphanumeric
(
'hello world'
);
58
}
catch
(
ConstraintViolationException
$exception) {
59
return
;
60
}
61
$this->fail();
62
}
63
}
ILIAS\Data\AlphanumericTest\testIntegerIsAlphanumericValueAndCanBeConvertedToString
testIntegerIsAlphanumericValueAndCanBeConvertedToString()
Definition:
AlphanumericTest.php:24
ILIAS\Data\AlphanumericTest
Definition:
AlphanumericTest.php:15
ILIAS\Data\Alphanumeric
Definition:
Alphanumeric.php:14
ILIAS\Data\AlphanumericTest\testFloatIsAlphanumericValue
testFloatIsAlphanumericValue()
Definition:
AlphanumericTest.php:45
ILIAS\Data\AlphanumericTest\testSimpleStringIsCorrectAlphanumericValueAndCanBeConvertedToString
testSimpleStringIsCorrectAlphanumericValueAndCanBeConvertedToString()
Definition:
AlphanumericTest.php:17
ILIAS\Refinery\ConstraintViolationException
Definition:
ConstraintViolationException.php:14
ILIAS\Data\AlphanumericTest\testIntegerIsAlphanumericValue
testIntegerIsAlphanumericValue()
Definition:
AlphanumericTest.php:31
ILIAS\Data\AlphanumericTest\testFloatIsAlphanumericValueAndCanBeConvertedToString
testFloatIsAlphanumericValueAndCanBeConvertedToString()
Definition:
AlphanumericTest.php:38
ILIAS\Data\AlphanumericTest\testTextIsNotAlphanumericAndWillThrowException
testTextIsNotAlphanumericAndWillThrowException()
Definition:
AlphanumericTest.php:52
TestCase
ConstraintViolationException
ILIAS\Data
Definition:
Alphanumeric.php:10
tests
Data
AlphanumericTest.php
Generated on Thu Apr 3 2025 20:01:23 for ILIAS by
1.8.13 (using
Doxyfile
)