-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_results.html
More file actions
256 lines (250 loc) · 12.2 KB
/
test_results.html
File metadata and controls
256 lines (250 loc) · 12.2 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Test Documentation</title>
<style>
body {
text-rendering: optimizeLegibility;
font-family: Source SansSerif Pro, Arial, sans-serif;
font-variant-ligatures: common-ligatures;
font-kerning: normal;
margin-left: 2rem;
background-color: #fff;
color: #000;
}
body > ul > li {
font-size: larger;
}
h2 {
font-size: larger;
text-decoration-line: underline;
text-decoration-thickness: 2px;
margin: 0;
padding: 0.5rem 0;
}
ul {
list-style: none;
margin: 0 0 2rem;
padding: 0 0 0 1rem;
text-indent: -1rem;
}
.success:before {
color: #4e9a06;
content: '✓';
padding-right: 0.5rem;
}
.defect {
color: #a40000;
}
.defect:before {
color: #a40000;
content: '✗';
padding-right: 0.5rem;
}
</style>
</head>
<body>
<h2>/home/runner/work/ote/ote/tests/Feature/AddAttributeCommandTest.php</h2>
<ul>
<li class="success">the add attribute command creates a new attribute</li>
<li class="success">the add attribute command handles missing lexical entry</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/AddEntryCommandTest.php</h2>
<ul>
<li class="success">the add entry command creates a new lexical entry</li>
<li class="success">the add entry command handles missing token</li>
<li class="success">the add entry command handles missing language</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/AddLanguageCommandTest.php</h2>
<ul>
<li class="success">the add language command creates a new language</li>
<li class="success">the add language command handles existing languages</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/AddLinkCommandTest.php</h2>
<ul>
<li class="success">the add link command creates a new link</li>
<li class="success">the add link command handles missing source entry</li>
<li class="success">the add link command handles missing target entry</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/AddTokenCommandTest.php</h2>
<ul>
<li class="success">the add token command creates a new token</li>
<li class="success">the add token command handles existing tokens</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/DeleteAttributeCommandTest.php</h2>
<ul>
<li class="success">the delete attribute command deletes an attribute</li>
<li class="success">the delete attribute command handles non-existent attributes</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/DeleteEntryCommandTest.php</h2>
<ul>
<li class="success">the delete entry command deletes an entry and its associations</li>
<li class="success">the delete entry command handles non-existent entries</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/DeleteLanguageCommandTest.php</h2>
<ul>
<li class="success">the delete language command deletes a language and its entries</li>
<li class="success">the delete language command handles non-existent languages</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/DeleteLinkCommandTest.php</h2>
<ul>
<li class="success">the delete link command deletes a link</li>
<li class="success">the delete link command handles non-existent links</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/DeleteTokenCommandTest.php</h2>
<ul>
<li class="success">the delete token command deletes a token and its entries</li>
<li class="success">the delete token command handles non-existent tokens</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/ExportOteFileCommandTest.php</h2>
<ul>
<li class="success">the export ote file command exports data to a file</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/ImportOteFileCommandTest.php</h2>
<ul>
<li class="success">the import ote file command imports data from a file</li>
<li class="success">the import ote file command handles missing file</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/LanguageControllerTest.php</h2>
<ul>
<li class="success">it displays a list of languages</li>
<li class="success">it displays the create language form</li>
<li class="success">it creates a new language</li>
<li class="success">it displays the edit language form</li>
<li class="success">it updates a language</li>
<li class="success">it deletes a language</li>
<li class="success">it shows a language and its lexical entries</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/LexiconControllerTest.php</h2>
<ul>
<li class="success">it displays a list of lexical entries</li>
<li class="success">it displays the create lexical entry form</li>
<li class="success">it stores a new lexical entry</li>
<li class="success">it shows a lexical entry</li>
<li class="success">it displays the edit lexical entry form</li>
<li class="success">it updates a lexical entry</li>
<li class="success">it deletes a lexical entry</li>
<li class="success">it displays the create attribute form</li>
<li class="success">it stores a new attribute</li>
<li class="success">it displays the edit attribute form</li>
<li class="success">it updates an attribute</li>
<li class="success">it deletes an attribute</li>
<li class="success">it displays the create link form</li>
<li class="success">it stores a new link</li>
<li class="success">it displays the edit link form</li>
<li class="success">it updates a link</li>
<li class="success">it deletes a link</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/ListAttributesCommandTest.php</h2>
<ul>
<li class="success">the list attributes command shows a table of attributes</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/ListEntriesCommandTest.php</h2>
<ul>
<li class="success">the list entries command shows a table of entries</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/ListLanguagesCommandTest.php</h2>
<ul>
<li class="success">the list languages command shows a table of languages</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/ListLinksCommandTest.php</h2>
<ul>
<li class="success">the list links command shows a table of links</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/ListTokensCommandTest.php</h2>
<ul>
<li class="success">the list tokens command shows a table of tokens</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/ShowEntryCommandTest.php</h2>
<ul>
<li class="success">the show entry command displays entry details</li>
<li class="success">the show entry command handles non-existent entries</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/ShowLanguageCommandTest.php</h2>
<ul>
<li class="success">the show language command displays language details</li>
<li class="success">the show language command handles non-existent languages</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/ShowTokenCommandTest.php</h2>
<ul>
<li class="success">the show token command displays token details</li>
<li class="success">the show token command handles non-existent tokens</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/StatsCommandTest.php</h2>
<ul>
<li class="success">the stats command displays lexicon statistics</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/TokenControllerTest.php</h2>
<ul>
<li class="success">it displays a list of tokens</li>
<li class="success">it displays the create token form</li>
<li class="success">it creates a new token</li>
<li class="success">it displays the edit token form</li>
<li class="success">it updates a token</li>
<li class="success">it deletes a token</li>
<li class="success">it shows a token and its lexical entries</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/UpdateLanguageCommandTest.php</h2>
<ul>
<li class="success">the update language command updates a language</li>
<li class="success">the update language command handles non-existent languages</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/UpdateTokenCommandTest.php</h2>
<ul>
<li class="success">the update token command updates a token</li>
<li class="success">the update token command handles non-existent tokens</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Feature/ValidateCommandTest.php</h2>
<ul>
<li class="success">the validate command finds no issues with clean data</li>
<li class="success">the validate command finds duplicate tokens</li>
<li class="success">the validate command finds unused tokens</li>
<li class="success">the validate command finds unused languages</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Unit/AttributeTest.php</h2>
<ul>
<li class="success">an attribute can be created</li>
<li class="success">an attribute belongs to a lexical entry</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Unit/LanguageTest.php</h2>
<ul>
<li class="success">a language can be created</li>
<li class="success">a language has many lexical entries</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Unit/LexicalEntryTest.php</h2>
<ul>
<li class="success">a lexical entry can be created</li>
<li class="success">a lexical entry belongs to a token</li>
<li class="success">a lexical entry belongs to a language</li>
<li class="success">a lexical entry has many attributes</li>
<li class="success">a lexical entry has many links</li>
<li class="success">a lexical entry has many linked from</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Unit/LinkTest.php</h2>
<ul>
<li class="success">a link can be created</li>
<li class="success">a link has a source entry</li>
<li class="success">a link has a target entry</li>
</ul>
<h2>/home/runner/work/ote/ote/tests/Unit/TokenTest.php</h2>
<ul>
<li class="success">a token can be created</li>
<li class="success">a token has many lexical entries</li>
</ul>
<h2>Example (Tests\Feature\Example)</h2>
<ul>
<li class="success">The application returns a successful response</li>
</ul>
<h2>Example (Tests\Unit\Example)</h2>
<ul>
<li class="success">That true is true</li>
</ul>
<h2>Home Controller (Tests\Feature\HomeController)</h2>
<ul>
<li class="success">The homepage loads correctly</li>
<li class="success">The validation page loads correctly with no issues</li>
<li class="success">The validation page shows issues</li>
</ul>
</body>
</html>