context("Class Tests")
load(file.path(system.file("data", package="GoldenMutagenesis"), "MSD_BsaI_result_lv2.RData"))
output<-capture.output(print_primer(primers), file=NULL)
test_that("Printing of primers (MSD) works", {
expect_that(output, is_identical_to(readLines('primers_MSD.txt')))
})
rm(primers)
#load("../../data/Point_Mutagenesis_BbsI_result.RData")
load(file.path(system.file("data", package="GoldenMutagenesis"), "Point_Mutagenesis_BbsI_result.RData"))
output<-capture.output(print_primer(primers), file=NULL)
test_that("Printing of primers (SPM) works", {
expect_that(output, is_identical_to(readLines('primers_SPM.txt', warn = F)))
})
rm(primers)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.