tests/testthat/test-magma_tileplot.r

test_that("magma_tileplot works", {
  
    res <- MAGMA.Celltyping::enrichment_results[[1]]
    results <- res$ctAssocMerged$level1$results
    ctd <- ewceData::ctd()
    wd <- getwd()
    #### Bound together ####
    tile_res <- magma_tileplot(ctd=ctd, 
                               results=results,
                               output_path = wd)
    testthat::expect_true(methods::is(tile_res,"patchwork"))
    
    #### Separated ####
    tile_res2 <- magma_tileplot(ctd=ctd,
                                results=results,
                                output_path = wd,
                                bind_plots = FALSE)
    testthat::expect_true(methods::is(tile_res2$heatmap,"gg"))
    testthat::expect_true(methods::is(tile_res2$dendro,"gg"))
})
NathanSkene/MAGMA_Celltyping documentation built on May 19, 2024, 7:23 a.m.