Skip to content

Commit 66b92a6

Browse files
committed
Fix URLs
1 parent da87e2c commit 66b92a6

File tree

5 files changed

+12
-16
lines changed

5 files changed

+12
-16
lines changed

β€ŽR/reporter-junit.Rβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ classnameOK <- function(text) {
77

88
#' Report results in jUnit XML format
99
#'
10+
#' @description
1011
#' This reporter includes detailed results about each test and summaries,
1112
#' written to a file (or stdout) in jUnit XML format. This can be read by
1213
#' the Jenkins Continuous Integration System to report on a dashboard etc.
1314
#' Requires the _xml2_ package.
1415
#'
15-
#' To fit into the jUnit structure, context() becomes the `<testsuite>`
16+
#' To fit into the jUnit structure, `context()` becomes the `<testsuite>`
1617
#' name as well as the base of the `<testcase> classname`. The
17-
#' test_that() name becomes the rest of the `<testcase> classname`.
18-
#' The deparsed expect_that() call becomes the `<testcase>` name.
18+
#' `test_that()`` name becomes the rest of the `<testcase> classname`.
19+
#' The deparsed `expect_that()` call becomes the `<testcase>` name.
1920
#' On failure, the message goes into the `<failure>` node message
2021
#' argument (first line only) and into its text content (full message).
21-
#'
2222
#' Execution time and some other details are also recorded.
2323
#'
2424
#' References for the jUnit XML format:
25-
#' \url{http://llg.cubic.org/docs/junit/}
25+
#' <https://github.com/testmoapp/junitxml>
2626
#'
2727
#' @export
2828
#' @family reporters

β€ŽR/reporter.Rβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#' You only need to use this `Reporter` object directly if you are creating
99
#' a new reporter. Currently, creating new Reporters is undocumented,
1010
#' so if you want to create your own, you'll need to make sure that you're
11-
#' familiar with [R6](https://adv-r.hadley.nz/R6.html) and then need read the
11+
#' familiar with [R6](https://adv-r.hadley.nz/r6.html) and then need read the
1212
#' source code for a few.
1313
#'
1414
#' @keywords internal

β€Žinst/CITATIONβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ bibentry(
66
year = 2011,
77
volume = 3,
88
pages = "5--10",
9-
url = "https://journal.r-project.org/archive/2011-1/RJournal_2011-1_Wickham.pdf"
9+
url = "https://journal.r-project.org/articles/RJ-2011-002/"
1010
)

β€Žman/JunitReporter.Rdβ€Ž

Lines changed: 4 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žman/Reporter.Rdβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)