test.equal: Difference between revisions
Jump to navigation
Jump to search
Bubblobill (talk | contribs) (Created page with "{{Languages|test.equal}} {{MacroFunction |name=test.equal |trusted=true |version= |description=Compares an actual value with an expected value and prints the output to chat. |usage= <syntaxhighlight lang="mtmacro" line> test.equal(expected, actual, label) </syntaxhighlight> '''Parameters''' {{param|expected|The value to compare against.}} {{param|actual|The value to compare.}} {{param|label|An identifying string included in the output.}} |example= <syntaxhighlight lang=...") |
Bubblobill (talk | contribs) No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Languages|test.equal}} | {{Languages|test.equal}} | ||
{{Experimental}} | |||
{{MacroFunction | {{MacroFunction | ||
|name=test.equal | |name=test.equal | ||
Line 18: | Line 19: | ||
[r: test.equal(1, myUDF(1,2), "Test #1 ")] | [r: test.equal(1, myUDF(1,2), "Test #1 ")] | ||
</syntaxhighlight> | </syntaxhighlight> | ||
output: | output: '''Test #1 Succeeded''' | ||
'''Test #1 Succeeded''' | output: '''Test #1 Failed, expected 1 got 0''' | ||
'''Test #1 Failed, expected 1 got 0''' | |||
|also= | |also= |
Latest revision as of 23:59, 31 May 2024
Languages: English
This article describes a feature or macro function that is experimental and may be subject to change.
test.equal() Function
Note: This function can only be used in a Trusted Macro
Compares an actual value with an expected value and prints the output to chat.
Usage
test.equal(expected, actual, label)
Parameters
expected
- The value to compare against.actual
- The value to compare.label
- An identifying string included in the output.
Example
[r: test.equal(1, myUDF(1,2), "Test #1 ")]
output: Test #1 Succeeded
output: Test #1 Failed, expected 1 got 0See Also
Languages: English