Nothing
#' @export
#' @importFrom testthat expect_identical
check_read_slice <- function(FUN, ..., mode) {
check_read_slice_row(FUN(...), mode)
check_read_slice_col(FUN(...), mode)
}
#' @importFrom testthat expect_identical
check_read_slice_row <- function(test.mat, mode, FUN="get_row_slice") {
ref <- as.matrix(test.mat)
dimnames(ref) <- NULL
rranges <- spawn_row_ordering(nrow(test.mat))
cbounds <- spawn_col_bounds(ncol(test.mat))
for (o in rranges) {
for (b in cbounds) {
range <- b[1]:b[2]
expect_identical(ref[o,range,drop=FALSE], .Call(paste0(FUN, "_", mode), test.mat, o, b, PACKAGE="beachtest"))
}
}
return(invisible(NULL))
}
#' @importFrom testthat expect_identical
check_read_slice_col <- function(test.mat, mode, FUN="get_col_slice") {
ref <- as.matrix(test.mat)
dimnames(ref) <- NULL
cranges <- spawn_col_ordering(ncol(test.mat))
rbounds <- spawn_row_bounds(nrow(test.mat))
for (o in cranges) {
for (b in rbounds) {
range <- b[1]:b[2]
expect_identical(ref[range,o,drop=FALSE], .Call(paste0(FUN, "_", mode), test.mat, o, b, PACKAGE="beachtest"))
}
}
return(invisible(NULL))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.