
expect_less_than(object, expected, ..., info = NULL, label = NULL,
expected.label = NULL)expect_lt(object, expected)
expect_lte(object, expected)
expect_more_than(object, expected, ..., info = NULL, label = NULL,
expected.label = NULL)
expect_gt(object, expected)
expect_gte(object, expected)
all.equal
NULL
, computed from deparsed object.label
for shortcut form.equivalence
,
expect_equal
,
expect_equivalent
,
expect_identical
;
expect_equal_to_reference
;
expect_error
, expect_match
,
expect_message
,
expect_output
,
expect_warning
,
matching-expectations
;
expect_false
, expect_true
;
expect_is
; expect_named
;
expect_null
; expect_silent
;
takes_less_than
a <- 9
expect_less_than(a, 10)
expect_less_than(11, 10)
a <- 11
expect_more_than(a, 10)
expect_more_than(9, 10)
Run the code above in your browser using DataLab