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
UIComponentsTest.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 2016 Timon Amstutz <timon.amstutz@ilub.unibe.ch> Extended GPL, see docs/LICENSE */
3
4
require_once(
"libs/composer/vendor/autoload.php"
);
5
include_once(
"tests/UI/Crawler/Fixture/Fixture.php"
);
6
7
use
ILIAS\UI\Implementation\Crawler
as
Crawler
;
8
use
PHPUnit\Framework\TestCase
;
9
13
class
UIComponentsTest
extends
TestCase
14
{
15
16
20
protected
$crawler
;
21
25
protected
$path_to_base_factory
=
"src/UI/Factory.php"
;
26
27
28
protected
function
setUp
() : void
29
{
30
$this->crawler =
new
Crawler\FactoriesCrawler
();
31
}
32
36
public
function
testAllUIComponentsFactoriesForNotThrowingErrors
()
37
{
38
$this->crawler->crawlFactory($this->path_to_base_factory);
42
$this->assertTrue(
true
);
43
}
44
}
UIComponentsTest
Tests the actual UI components from src/UI.
Definition:
UIComponentsTest.php:13
ILIAS\UI\Implementation\Crawler\FactoriesCrawler
Definition:
FactoriesCrawler.php:12
UIComponentsTest\testAllUIComponentsFactoriesForNotThrowingErrors
testAllUIComponentsFactoriesForNotThrowingErrors()
Definition:
UIComponentsTest.php:36
UIComponentsTest\$path_to_base_factory
$path_to_base_factory
Definition:
UIComponentsTest.php:25
UIComponentsTest\$crawler
$crawler
Definition:
UIComponentsTest.php:20
ILIAS\UI\Implementation\Crawler
Definition:
Crawler.php:5
UIComponentsTest\setUp
setUp()
Definition:
UIComponentsTest.php:28
TestCase
tests
UI
Crawler
UIComponentsTest.php
Generated on Tue Apr 8 2025 20:01:37 for ILIAS by
1.8.13 (using
Doxyfile
)