testthat (version 1.0.2)

comparison-expectations: Expectation: is returned value less or greater than specified value?

Description

Expectation: is returned value less or greater than specified value?

Usage

expect_lt(object, expected, label = NULL, expected.label = NULL)

expect_lte(object, expected, label = NULL, expected.label = NULL)

expect_gt(object, expected, label = NULL, expected.label = NULL)

expect_gte(object, expected, label = NULL, expected.label = NULL)

Arguments

object
object to test
expected
Single numeric value to compare.
label
object label. When NULL, computed from deparsed object.
expected.label
Equivalent of label for shortcut form.
...
other values passed to all.equal

See Also

Other expectations: equality-expectations, expect_equal_to_reference, expect_length, expect_match, expect_named, inheritance-expectations, logical-expectations, output-expectations

Examples

Run this code
a <- 9
expect_lt(a, 10)

expect_lt(11, 10)

a <- 11
expect_gt(a, 10)
expect_gt(9, 10)

Run the code above in your browser using DataLab