Nothing
test_that("progress reporter shows all killed", {
.with_example_dir("shipping/", {
mutators <- list(operator(">", "<"))
plan <- muttest_plan(mutators, fs::dir_ls("R"))
.expect_snapshot(
muttest(
plan,
reporter = ProgressMutationReporter$new(
min_time = Inf,
survived_detail = "none"
)
)
)
})
})
test_that("progress reporter shows survived mutants in summary", {
.with_example_dir("shipping/", {
mutators <- list(operator(">", "<"), operator(">", ">="))
plan <- muttest_plan(mutators, fs::dir_ls("R"))
.expect_snapshot(
muttest(
plan,
reporter = ProgressMutationReporter$new(
min_time = Inf,
survived_detail = "summary"
)
)
)
})
})
test_that("progress reporter doesn't show survived mutant details", {
.with_example_dir("shipping/", {
mutators <- list(operator(">", "<"), operator(">", ">="))
plan <- muttest_plan(mutators, fs::dir_ls("R"))
.expect_snapshot(
muttest(
plan,
reporter = ProgressMutationReporter$new(
min_time = Inf,
survived_detail = "none"
)
)
)
})
})
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.