checkOS(os)
check_os(os)
assertOS(os, add = NULL, .var.name = NULL)
assert_os(os, add = NULL, .var.name = NULL)
testOS(os)
test_os(os)
expect_os(os, info = NULL, label = NULL)
character(1)
]
Check the operating system to be in a set with possible elements windows,
mac, linux and solaris.AssertCollection
]
Collection to store assertion messages. See AssertCollection
.character(1)
]
Name of the checked object to print in assertions. Defaults to
the heuristic implemented in vname
.expect_that
.character(1)
]
Name of the checked object to print in messages. Defaults to
the heuristic implemented in vname
.TRUE
. If the check
is not successful, assertOS
/assert_os
throws an error message, testOS
/test_os
returns FALSE
,
and checkOS
returns a string with the error message.
The function expect_os
always returns an
expectation
.