You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With this commit anyone can write custom assert functions and reuse them
in multiple tests. Custom assert functions can call assert_*** or a new
function called test_fail(). In order to properly print file and line
number in the GUI, assert functions should call test_helper() function
in the beginning.
Copy file name to clipboardexpand all lines: README.md
+36
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,8 @@ Test API
44
44
*[assert_not_close](#assert_not_close)
45
45
*[assert_nil](#assert_nil)
46
46
*[assert_not_nil](#assert_not_nil)
47
+
*[test_helper](#test_helper)
48
+
*[test_fail](#test_fail)
47
49
48
50
Introduction
49
51
------------
@@ -142,6 +144,40 @@ Asserts that `actual` is not `nil`.
142
144
143
145
[Back to TOC](#test-api)
144
146
147
+
test_helper
148
+
-----------
149
+
150
+
**syntax:***test_helper()*
151
+
152
+
`test_helper` marks the calling function as a test helper function.
153
+
When printing file and line information in GUI, that function will be
154
+
skipped.
155
+
156
+
[Back to TOC](#test-api)
157
+
158
+
test_fail
159
+
---------
160
+
161
+
**syntax:***test_fail(err)*
162
+
163
+
Generates test error which stops current test execution and shows error to
164
+
the user. In the GUI, the error will be presented together with a file name
165
+
and line number where the `test_fail` function was executed. If you run
166
+
`test_fail` from your own assert function, and want to see a place where this
167
+
assert function was executed instead, please run the [test_helper()](#test_helper) function in the beginning of your assert function:
168
+
```lua
169
+
functioncustom_assert(....)
170
+
test_helper() -- mark custom_assert function as test helper
171
+
if .... then
172
+
test_fail("message")
173
+
end
174
+
end
175
+
```
176
+
177
+
`err` is an error message as a string or a table. All table fields will be presented in the GUI. Table could contain special `msg` field which will always be presented first.
---Generates test error which stops current test execution and shows error to
124
+
---the user. In the GUI, the error will be presented together with a file name
125
+
---and line number where the `test_fail` function was executed. If you run
126
+
---`test_fail` from your own assert function, and want to see a place where this
127
+
---assert function was executed instead, please run the test_helper() function
128
+
---in the beginning of your assert function:
129
+
---```
130
+
--- function custom_assert(....)
131
+
--- test_helper() -- mark custom_assert function as test helper
132
+
--- if .... then
133
+
--- test_fail("message")
134
+
--- end
135
+
--- end
136
+
---```
137
+
---@paramerrstring|table Error message as a string or a table. All table fields will be presented in the GUI. Table could contain special `msg` field which will always be presented first.
138
+
functiontest_fail(err)
139
+
iftype(err) !="table" then
140
+
err= { msg=tostring(err) }
141
+
end
142
+
143
+
err.__traceback=traceback()
144
+
145
+
error(err)
146
+
end
147
+
93
148
localoriginalPrint<const>=print
94
149
95
150
-- override picotron print, so all text is sent to the parent process
0 commit comments