* Patch from reinier (bug id 25544)

git-svn-id: trunk@26476 -
This commit is contained in:
michael 2014-01-16 10:49:55 +00:00
parent 3bd53b9658
commit d7fb3be2af

View File

@ -2,7 +2,7 @@
This file is part of the Free Component Library (FCL) This file is part of the Free Component Library (FCL)
Copyright (c) 2006 by Dean Zobec, Graeme Geldenhuys Copyright (c) 2006 by Dean Zobec, Graeme Geldenhuys
an example of XML report for FPCUnit tests. An example of an XML report writer for FPCUnit tests.
See the file COPYING.FPC, included in this distribution, See the file COPYING.FPC, included in this distribution,
for details about the copyright. for details about the copyright.
@ -16,11 +16,15 @@
Purpose: Purpose:
This unit contains a XML TestListener for use with the fpcUnit testing This unit contains a XML TestListener for use with the fpcUnit testing
framework. It uses the XMLWrite unit, which is part of FPC, to generate framework. It uses the XMLWrite unit (part of FPC) to generate
the XML document. The benefit of using the XMLWrite unit, is that the the XML document. The benefit of using XMLWrite is that the data generated
data generated is valid XML, with resevered characters correctly escaped. is valid XML, with reserved characters correctly escaped.
This allows the XML document to be further processed with XSLT etc without This allows the XML document to be further processed with XSLT etc without
any issues. any issues.
Notes:
Specify 'null' as the filename if you don't want to output to file (e.g.
used by the GUI test runner which instead reads the Document property).
} }