File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -30,5 +30,7 @@ LazyData: true
30
30
RoxygenNote: 7.2.1
31
31
Suggests:
32
32
rmarkdown,
33
- knitr
33
+ knitr,
34
+ testthat (>= 3.0.0)
34
35
VignetteBuilder: knitr
36
+ Config/testthat/edition: 3
Original file line number Diff line number Diff line change
1
+ # This file is part of the standard setup for testthat.
2
+ # It is recommended that you do not modify it.
3
+ #
4
+ # Where should you do additional test configuration?
5
+ # Learn more about the roles of various files in:
6
+ # * https://r-pkgs.org/tests.html
7
+ # * https://testthat.r-lib.org/reference/test_package.html#special-files
8
+
9
+ library(testthat )
10
+ library(ETLSyntheaBuilder )
11
+
12
+ test_check(" ETLSyntheaBuilder" )
Original file line number Diff line number Diff line change
1
+ test_that(" multiplication works" , {
2
+ expect_equal(2 * 2 , 4 )
3
+ })
You can’t perform that action at this time.
0 commit comments