Skip to content

Commit 62f83a1

Browse files
Add test results
1 parent e2cbc4c commit 62f83a1

3 files changed

Lines changed: 459 additions & 459 deletions

File tree

test_results.log

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
✓ an attribute belongs to a lexical entry 0.03s
55

66
PASS Tests\Unit\ExampleTest
7-
✓ that true is true 0.08s
7+
✓ that true is true 0.02s
88

99
PASS Tests\Unit\LanguageTest
1010
✓ a language can be created 0.02s
1111
✓ a language has many lexical entries 0.03s
1212

1313
PASS Tests\Unit\LexicalEntryTest
1414
✓ a lexical entry can be created 0.03s
15-
✓ a lexical entry belongs to a token 0.03s
15+
✓ a lexical entry belongs to a token 0.02s
1616
✓ a lexical entry belongs to a language 0.03s
1717
✓ a lexical entry has many attributes 0.03s
1818
✓ a lexical entry has many links 0.03s
@@ -24,12 +24,12 @@
2424
✓ a link has a target entry 0.03s
2525

2626
PASS Tests\Unit\TokenTest
27-
✓ a token can be created 0.03s
27+
✓ a token can be created 0.02s
2828
✓ a token has many lexical entries 0.03s
2929

3030
PASS Tests\Feature\AddAttributeCommandTest
31-
✓ the add attribute command creates a new attribute 0.04s
32-
✓ the add attribute command handles missing lexical entry 0.03s
31+
✓ the add attribute command creates a new attribute 0.03s
32+
✓ the add attribute command handles missing lexical entry 0.02s
3333

3434
PASS Tests\Feature\AddEntryCommandTest
3535
✓ the add entry command creates a new lexical entry 0.03s
@@ -50,24 +50,24 @@
5050
✓ the add token command handles existing tokens 0.03s
5151

5252
PASS Tests\Feature\DeleteAttributeCommandTest
53-
✓ the delete attribute command deletes an attribute 0.04s
54-
✓ the delete attribute command handles non-existent attributes 0.03s
53+
✓ the delete attribute command deletes an attribute 0.03s
54+
✓ the delete attribute command handles non-existent attributes 0.02s
5555

5656
PASS Tests\Feature\DeleteEntryCommandTest
5757
✓ the delete entry command deletes an entry and its associations 0.04s
5858
✓ the delete entry command handles non-existent entries 0.03s
5959

6060
PASS Tests\Feature\DeleteLanguageCommandTest
6161
✓ the delete language command deletes a language and its entries 0.03s
62-
✓ the delete language command handles non-existent languages 0.03s
62+
✓ the delete language command handles non-existent languages 0.02s
6363

6464
PASS Tests\Feature\DeleteLinkCommandTest
6565
✓ the delete link command deletes a link 0.04s
66-
✓ the delete link command handles non-existent links 0.03s
66+
✓ the delete link command handles non-existent links 0.02s
6767

6868
PASS Tests\Feature\DeleteTokenCommandTest
6969
✓ the delete token command deletes a token and its entries 0.03s
70-
✓ the delete token command handles non-existent tokens 0.03s
70+
✓ the delete token command handles non-existent tokens 0.02s
7171

7272
PASS Tests\Feature\ExampleTest
7373
✓ the application returns a successful response 0.05s
@@ -82,7 +82,7 @@
8282

8383
PASS Tests\Feature\ImportOteFileCommandTest
8484
✓ the import ote file command imports data from a file 0.05s
85-
✓ the import ote file command handles missing file 0.02s
85+
✓ the import ote file command handles missing file 0.03s
8686

8787
PASS Tests\Feature\LanguageControllerTest
8888
✓ it displays a list of languages 0.03s
@@ -91,7 +91,7 @@
9191
✓ it displays the edit language form 0.03s
9292
✓ it updates a language 0.03s
9393
✓ it deletes a language 0.03s
94-
✓ it shows a language and its lexical entries 0.04s
94+
✓ it shows a language and its lexical entries 0.03s
9595

9696
PASS Tests\Feature\LexiconControllerTest
9797
✓ it displays a list of lexical entries 0.05s
@@ -103,14 +103,14 @@
103103
✓ it deletes a lexical entry 0.03s
104104
✓ it displays the create attribute form 0.03s
105105
✓ it stores a new attribute 0.03s
106-
✓ it displays the edit attribute form 0.04s
107-
✓ it updates an attribute 0.04s
106+
✓ it displays the edit attribute form 0.03s
107+
✓ it updates an attribute 0.03s
108108
✓ it deletes an attribute 0.03s
109109
✓ it displays the create link form 0.03s
110-
✓ it stores a new link 0.04s
110+
✓ it stores a new link 0.03s
111111
✓ it displays the edit link form 0.04s
112112
✓ it updates a link 0.04s
113-
✓ it deletes a link 0.04s
113+
✓ it deletes a link 0.03s
114114

115115
PASS Tests\Feature\ListAttributesCommandTest
116116
✓ the list attributes command shows a table of attributes 0.06s
@@ -125,25 +125,25 @@
125125
✓ the list links command shows a table of links 0.05s
126126

127127
PASS Tests\Feature\ListTokensCommandTest
128-
✓ the list tokens command shows a table of tokens 0.03s
128+
✓ the list tokens command shows a table of tokens 0.04s
129129

130130
PASS Tests\Feature\ShowEntryCommandTest
131131
✓ the show entry command displays entry details 0.05s
132-
✓ the show entry command handles non-existent entries 0.03s
132+
✓ the show entry command handles non-existent entries 0.02s
133133

134134
PASS Tests\Feature\ShowLanguageCommandTest
135135
✓ the show language command displays language details 0.04s
136-
✓ the show language command handles non-existent languages 0.03s
136+
✓ the show language command handles non-existent languages 0.02s
137137

138138
PASS Tests\Feature\ShowTokenCommandTest
139139
✓ the show token command displays token details 0.04s
140-
✓ the show token command handles non-existent tokens 0.03s
140+
✓ the show token command handles non-existent tokens 0.02s
141141

142142
PASS Tests\Feature\StatsCommandTest
143143
✓ the stats command displays lexicon statistics 0.26s
144144

145145
PASS Tests\Feature\TokenControllerTest
146-
✓ it displays a list of tokens 0.04s
146+
✓ it displays a list of tokens 0.03s
147147
✓ it displays the create token form 0.03s
148148
✓ it creates a new token 0.03s
149149
✓ it displays the edit token form 0.03s
@@ -157,7 +157,7 @@
157157

158158
PASS Tests\Feature\UpdateTokenCommandTest
159159
✓ the update token command updates a token 0.03s
160-
✓ the update token command handles non-existent tokens 0.03s
160+
✓ the update token command handles non-existent tokens 0.02s
161161

162162
PASS Tests\Feature\ValidateCommandTest
163163
✓ the validate command finds no issues with clean data 0.03s
@@ -166,5 +166,5 @@
166166
✓ the validate command finds unused languages 0.03s
167167

168168
Tests: 96 passed (305 assertions)
169-
Duration: 4.10s
169+
Duration: 3.85s
170170

0 commit comments

Comments
 (0)