junit: Specify unicode replacement character as \uFFFD

This is just to make the exact character we want to return explicit,
otherwise it could be confused by any unsupported character in your text
editor.
This commit is contained in:
Joël Stemmer 2022-09-17 22:33:04 +01:00
parent 84a5190347
commit 2b3d79c572

View File

@ -244,14 +244,14 @@ func escapeIllegalChars(str string) string {
if isInCharacterRange(r) { if isInCharacterRange(r) {
return r return r
} }
return '<EFBFBD>' return '\uFFFD'
}, str) }, str)
} }
// Decide whether the given rune is in the XML Character Range, per // Decide whether the given rune is in the XML Character Range, per
// the Char production of https://www.xml.com/axml/testaxml.htm, // the Char production of https://www.xml.com/axml/testaxml.htm,
// Section 2.2 Characters. // Section 2.2 Characters.
// Form: encoding/xml/xml.go // From: encoding/xml/xml.go
func isInCharacterRange(r rune) (inrange bool) { func isInCharacterRange(r rune) (inrange bool) {
return r == 0x09 || return r == 0x09 ||
r == 0x0A || r == 0x0A ||