Nothing
context("test-multiwave")
library(optimall)
library(dplyr)
test <- multiwave(phases = 2, waves = c(1, 3))
test_that("multiwave makes object with proper slots", {
expect_equal(length(test@phases), 2)
expect_equal(length(test@phases$phase2@waves), 3)
})
test_that("initiating with metadata and phase1 data works", {
test <- multiwave(
phases = 2, waves = c(1, 3),
phase1 = data.frame(
a = c("a", "b", "c"),
b = c(1, 2, 3)
),
metadata = list(title = "title")
)
expect_equal(get_mw(test, phase = 1), data.frame(
a = c("a", "b", "c"),
b = c(1, 2, 3)
))
expect_equal(
get_mw(test, phase = NA, slot = "metadata"),
list(title = "title")
)
})
test_that("errors work", {
# Too many waves in phase 1
expect_error(
multiwave(phases = 2, waves = c(2, 3)),
"phase 1 can only contain"
)
expect_error(
multiwave(phases = 2, waves = c(2, 3, 4)),
"must be a numeric vector with length"
)
expect_error(
multiwave(phases = 0, waves = c(2, 3, 4)),
"must be a numeric value"
)
})
test_that("single phase is possible", {
test <- multiwave(phases = 1, waves = c(1))
expect_equal(length(test@phases), 1)
})
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.