Jonas Maebe 6398fa484c + darwin/ppc64 support 19 лет назад
..
demo 847377bf79 * Patch from Dean Zobec to fix the XMLreporter 19 лет назад
example_output fe8a3dbfe7 * Moved fpcunit to inc, added testresult writers from Dean Zobec 19 лет назад
example_xsl b26b3e06dd * Patch from Graeme Geldenhuys to include javascript in css/xsl 19 лет назад
exampletests 6398fa484c + darwin/ppc64 support 19 лет назад
tests 6398fa484c + darwin/ppc64 support 19 лет назад
Makefile 6398fa484c + darwin/ppc64 support 19 лет назад
Makefile.fpc 9adb91a68d + support for make -jX by marking all Makefiles that need to be executed 19 лет назад
README.txt fe8a3dbfe7 * Moved fpcunit to inc, added testresult writers from Dean Zobec 19 лет назад
fpcunitreport.pp fe8a3dbfe7 * Moved fpcunit to inc, added testresult writers from Dean Zobec 19 лет назад
fpmake.inc cc4818be26 + initial implementation of new fpmake compile tools 20 лет назад
fpmake.pp cc4818be26 + initial implementation of new fpmake compile tools 20 лет назад
latextestreport.pp fe8a3dbfe7 * Moved fpcunit to inc, added testresult writers from Dean Zobec 19 лет назад
plaintestreport.pp fe8a3dbfe7 * Moved fpcunit to inc, added testresult writers from Dean Zobec 19 лет назад
testdecorator.pp fce57deb31 + Patch from Graeme to add DUnit compatibility interface. 19 лет назад
testregistry.pp 790a4fe2d3 * log and id tags removed 20 лет назад
testreport.pp dee22e8b4a * Patch from Graeme Geldenhuys 19 лет назад
ubmockobject.pp 790a4fe2d3 * log and id tags removed 20 лет назад
xmlreporter.pas dee22e8b4a * Patch from Graeme Geldenhuys 19 лет назад
xmltestreport.pp d1f8bcc26f + public property TXMLResultsWriter.Document 19 лет назад

README.txt

This is a new rewrite of the fpcunit test reports to make
fpcunit independent of the xml dom library but still provide
a good sistem of reports.
The reports are meant to be used to write the results of the tests
with the new fpc packaging system.
It produces latex and plain reports. Timing of the
executed tests is provided at the testcase and testsuite level.
Summary of the results of the contained testcases (number of
run tests, number of errors, failures and ignored tests)
is provided for each test suite.
A modified console test runner (consoletestrunner.pp)
is included that uses this new reporting classes.
Of course a separate xmltestreport class is included for those
that would like to use the xml test report through xslt to produce
more complex html reports.


The console test runner has to be used as always,
for example:

program runtests;

{$mode objfpc}{$H+}

uses
Classes, consoletestrunner,
add here the units containing your testcases;

var
App: TTestRunner;

begin
App := TTestRunner.Create(nil);
App.Initialize;
App.Title := 'FPCUnit Console runner.';
App.Run;
App.Free;
end.