-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
114 lines (102 loc) · 5.97 KB
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="bootstrap.php">
<php>
</php>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<file>./webfiori/framework/Access.php</file>
<file>./webfiori/framework/DB.php</file>
<file>./webfiori/framework/Language.php</file>
<file>./webfiori/framework/config/JsonDriver.php</file>
<file>./webfiori/framework/config/ClassDriver.php</file>
<file>./webfiori/framework/Privilege.php</file>
<file>./webfiori/framework/PrivilegesGroup.php</file>
<file>./webfiori/framework/User.php</file>
<file>./webfiori/framework/Theme.php</file>
<file>./webfiori/framework/ui/BeforeRenderCallback.php</file>
<file>./webfiori/framework/ui/WebPage.php</file>
<file>./webfiori/framework/scheduler/BaseTask.php</file>
<file>./webfiori/framework/scheduler/AbstractTask.php</file>
<file>./webfiori/framework/scheduler/TasksManager.php</file>
<file>./webfiori/framework/scheduler/TaskArgument.php</file>
<file>./webfiori/framework/router/RouterUri.php</file>
<file>./webfiori/framework/router/Router.php</file>
<file>./webfiori/framework/session/Session.php</file>
<file>./webfiori/framework/session/SessionsManager.php</file>
<file>./webfiori/framework/session/DefaultSessionStorage.php</file>
<file>./webfiori/framework/session/DatabaseSessionStorage.php</file>
<file>./webfiori/framework/session/SessionDB.php</file>
<file>./webfiori/framework/cli/commands/AddCommand.php</file>
<file>./webfiori/framework/cli/commands/CreateCommand.php</file>
<file>./webfiori/framework/cli/commands/ListRoutesCommand.php</file>
<file>./webfiori/framework/cli/commands/ListThemesCommand.php</file>
<file>./webfiori/framework/cli/commands/RunSQLQueryCommand.php</file>
<file>./webfiori/framework/cli/commands/SchedulerCommand.php</file>
<file>./webfiori/framework/cli/commands/SettingsCommand.php</file>
<file>./webfiori/framework/cli/commands/UpdateSettingsCommand.php</file>
<file>./webfiori/framework/cli/commands/UpdateTableCommand.php</file>
<file>./webfiori/framework/cli/commands/VersionCommand.php</file>
<file>./webfiori/framework/cli/commands/WHelpCommand.php</file>
<file>./webfiori/framework/cli/CLITestCase.php</file>
<file>./webfiori/framework/cli/CLIUtils.php</file>
<file>./webfiori/framework/cli/helpers/ClassInfoReader.php</file>
<file>./webfiori/framework/cli/helpers/CreateBackgroundTask.php</file>
<file>./webfiori/framework/cli/helpers/CreateCLIClassHelper.php</file>
<file>./webfiori/framework/cli/helpers/CreateClassHelper.php</file>
<file>./webfiori/framework/cli/helpers/CreateDBAccessHelper.php</file>
<file>./webfiori/framework/cli/helpers/CreateFullRESTHelper.php</file>
<file>./webfiori/framework/cli/helpers/CreateMiddleware.php</file>
<file>./webfiori/framework/cli/helpers/CreateTableObj.php</file>
<file>./webfiori/framework/cli/helpers/CreateThemeHelper.php</file>
<file>./webfiori/framework/cli/helpers/CreateWebService.php</file>
<file>./webfiori/framework/cli/helpers/TableObjHelper.php</file>
<file>./webfiori/framework/cli/helpers/CreateAPITestCase.php</file>
<file>./webfiori/framework/writers/CLICommandClassWriter.php</file>
<file>./webfiori/framework/writers/ClassWriter.php</file>
<file>./webfiori/framework/writers/DBClassWriter.php</file>
<file>./webfiori/framework/writers/LangClassWriter.php</file>
<file>./webfiori/framework/writers/MiddlewareClassWriter.php</file>
<file>./webfiori/framework/writers/SchedulerTaskClassWriter.php</file>
<file>./webfiori/framework/writers/TableClassWriter.php</file>
<file>./webfiori/framework/writers/ThemeClassWriter.php</file>
<file>./webfiori/framework/writers/ThemeComponentWriter.php</file>
<file>./webfiori/framework/writers/WebServiceWriter.php</file>
<file>./webfiori/framework/writers/APITestCaseWriter.php</file>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="clover.xml"/>
</logging>
<testsuites>
<testsuite name="General Tests">
<directory>./tests/webfiori/framework/test</directory>
</testsuite>
<testsuite name="Database Tests">
<directory>./tests/webfiori/framework/test/DBTest.php</directory>
</testsuite>
<testsuite name="I18n Tests">
<directory>./tests/webfiori/framework/test/langs</directory>
</testsuite>
<testsuite name="Router Tests">
<directory>./tests/webfiori/framework/test/router</directory>
</testsuite>
<testsuite name="EMail Tests">
<directory>./tests/webfiori/framework/test/mail</directory>
</testsuite>
<testsuite name="Writers Tests">
<directory>./tests/webfiori/framework/test/writers</directory>
</testsuite>
<testsuite name="CLI Tests">
<directory>./tests/webfiori/framework/test/cli</directory>
</testsuite>
<testsuite name="Themes Tests">
<directory>./tests/webfiori/framework/test/theme</directory>
</testsuite>
<testsuite name="Scheduler Tests">
<directory>./tests/webfiori/framework/test/scheduler</directory>
</testsuite>
<testsuite name="Session Tests">
<directory>./tests/webfiori/framework/test/session</directory>
</testsuite>
</testsuites>
</phpunit>