AusweisApp2/test/qml/generic/test_Utils.qml

19 lines
400 B
QML
Raw Permalink Normal View History

2019-09-30 17:22:19 +02:00
/*
* \copyright Copyright (c) 2016-2019 Governikus GmbH & Co. KG, Germany
*/
2019-01-03 15:06:22 +01:00
import QtTest 1.10
2017-07-03 09:33:28 +02:00
2019-01-03 15:06:22 +01:00
import Governikus.Global 1.0
2017-07-03 09:33:28 +02:00
TestCase {
name: "MathTests"
function test_escapeHtml() {
compare(Utils.escapeHtml("a&b"), "a&b", "escape &")
compare(Utils.escapeHtml("<br/>"), "&lt;br/&gt;", "escape < and >")
compare(Utils.escapeHtml("\"Hello\""), "&quot;Hello&quot;", "escape \"")
}
}