Skip to content

Commit f3be89a

Browse files
committed
Add test for basicAnnotation
1 parent 73f17b0 commit f3be89a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
test_that("Annotation is completed regardless of basicAnnotation", {
3+
4+
result_f <- plot_auto_SPC(example_series_1,
5+
chartType = "XMR",
6+
basicAnnotations = FALSE)
7+
8+
result_t <- plot_auto_SPC(example_series_1,
9+
chartType = "XMR",
10+
basicAnnotations = TRUE)
11+
12+
expect_equal(result_f$data,
13+
result_t$data)
14+
15+
16+
})

0 commit comments

Comments
 (0)