| checkSetEqual {checkmate} | R Documentation |
Check if an argument is equal to a given set
Description
Check if an argument is equal to a given set
Usage
checkSetEqual(x, y, ordered = FALSE, fmatch = FALSE)
check_set_equal(x, y, ordered = FALSE, fmatch = FALSE)
assertSetEqual(
x,
y,
ordered = FALSE,
fmatch = FALSE,
.var.name = vname(x),
add = NULL
)
assert_set_equal(
x,
y,
ordered = FALSE,
fmatch = FALSE,
.var.name = vname(x),
add = NULL
)
testSetEqual(x, y, ordered = FALSE, fmatch = FALSE)
test_set_equal(x, y, ordered = FALSE, fmatch = FALSE)
expect_set_equal(
x,
y,
ordered = FALSE,
fmatch = FALSE,
info = NULL,
label = vname(x)
)
Arguments
x |
[any] |
y |
[ |
ordered |
[ |
fmatch |
[ |
.var.name |
[ |
add |
[ |
info |
[ |
label |
[ |
Value
Depending on the function prefix:
If the check is successful, the functions
assertSubset/assert_subset return
x invisibly, whereas
checkSubset/check_subset and
testSubset/test_subset return
TRUE.
If the check is not successful,
assertSubset/assert_subset
throws an error message,
testSubset/test_subset
returns FALSE,
and checkSubset/check_subset
return a string with the error message.
The function expect_subset always returns an
expectation.
Note
The object x must be of the same type as the set w.r.t. typeof.
Integers and doubles are both treated as numeric.
See Also
Other set:
checkChoice(),
checkDisjunct(),
checkPermutation(),
checkSubset()
Examples
testSetEqual(c("a", "b"), c("a", "b"))
testSetEqual(1:3, 1:4)
# x is not converted before the comparison (except for numerics)
testSetEqual(factor("a"), "a")
testSetEqual(1, "1")
testSetEqual(1, as.integer(1))