Nothing
context('Testing validity')
trms <- c('XXX', 'XXX1', 'YYY')
ch <- c('XXX', 'XXX1')
test_that('can construct', {
manual <- new('Hypothesis', .Data=ch)
expect_is(manual, 'Hypothesis')
fun <- Hypothesis(ch)
## Get same result using static constructor or new
expect_equal(manual, fun)
fun <- generateHypothesis(manual, trms[1:2])
expect_is(fun, 'Hypothesis')
expect_equivalent(fun@contrastMatrix, diag(2))
fun2 <- generateHypothesis(fun, trms)
expect_equal(rownames(fun2@contrastMatrix), trms)
})
test_that('Coefficient Hypothesis Behaves',{
obj <- new('CoefficientHypothesis', trms[1:2])
expect_is(obj, 'CoefficientHypothesis')
obj <- generateHypothesis(obj, trms[1:2])
expect_equal(obj@index, 1:2)
expect_equal(obj@contrastMatrix, diag(2), check.attributes=FALSE)
})
test_that('Can give terms at construction time',{
delayed <- Hypothesis(ch)
delayed <- generateHypothesis(delayed, trms)
run <- Hypothesis(ch, trms)
expect_equal(delayed, run)
})
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.