View source: R/test.data.table.R
test | R Documentation |
An internal testing function used in data.table
test scripts that are run by test.data.table
.
test(num, x, y = TRUE,
error = NULL, warning = NULL, message = NULL,
output = NULL, notOutput = NULL, ignore.warning = NULL,
options = NULL, env = NULL)
num |
A unique identifier for a test, helpful in identifying the source of failure when testing is not working. Currently, we use a manually-incremented system with tests formatted as |
x |
An input expression to be evaluated. |
y |
Pre-defined value to compare to |
error |
When you are testing behaviour of code that you expect to fail with an error, supply the expected error message to this argument. It is interpreted as a regular expression, so you can be abbreviated, but try to include the key portion of the error so as not to accidentally include a different error message. |
warning |
Same as |
message |
Same as |
output |
If you are testing the printing/console output behaviour; e.g. with |
notOutput |
Or if you are testing that a feature does not print particular console output. Case insensitive (unlike output) so that the test does not incorrectly pass just because the string is not found due to case. |
ignore.warning |
A single character string. Any warnings emitted by |
options |
A named list of options to set for the duration of the test. Any code evaluated during this call to 'test()' (usually, 'x', or maybe 'y') will run with the named options set, and the original options will be restored on return. This is a named list since different options can have different types in general, but in typical usage, only one option is set at a time, in which case a named vector is also accepted. |
env |
A named list of environment variables to set for the duration of the test, much like |
Logical TRUE
when test passes, FALSE
when test fails. Invisibly.
NA_real_
and NaN
are treated as equal, use identical
if distinction is needed. See examples below.
If warning=
is not supplied then you are automatically asserting no warning is expected; the test will fail if any warning does occur. Similarly for message=
.
Multiple warnings are supported; supply a vector of strings to warning=
. If x
does not produce the correct number of warnings in the correct order, the test will fail.
Strings passed to notOutput=
should be minimal; e.g. pick out single words from the output that you desire to check does not occur. The reason being so that the test does not incorrectly pass just because the output has slightly changed. For example notOutput="revised"
is better than notOutput="revised flag to true"
. notOutput=
is automatically case insensitive for this reason.
test.data.table
test = data.table:::test
test(1, x = sum(1:5), y = 15L)
test(2, log(-1), NaN, warning="NaNs")
test(3, sum("a"), error="invalid.*character")
# test failure example
stopifnot(
test(4, TRUE, FALSE) == FALSE
)
# NA_real_ vs NaN
test(5.01, NA_real_, NaN)
test(5.03, all.equal(NaN, NA_real_))
test(5.02, identical(NaN, NA_real_), FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.