Nothing
test_that("AOV : same output as previous version with small tree", {
# Load the simple DEXi tree needed for the test
list_tree <- readRDS(system.file("testdata", "testtrees.rds",
package = "dexisensitivity"
))
tree <- list_tree[[1]]
# Setup a random seed for the test
set.seed(42, kind = "Mersenne-Twister")
### - Unit test - ###
test_output <- aov_tree(tree)
sorted_test_output <- lapply(test_output, function(df){
df[order(rownames(df)),]
})
expected_output <- readRDS(system.file("testdata", "test_aov_small.rds",
package = "dexisensitivity"
))
sorted_expected_output <- lapply(expected_output, function(df){
df[order(rownames(df)),]
})
expect_equal(sorted_test_output, sorted_expected_output)
### - End - ###
# restore random seed
set.seed(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.