pierre 4226f08565 Regenerate with up-to-date fpcmake binary hace 12 años
..
demo 5b8dd4c004 * move fcl sources to separate packages hace 18 años
example_output 5b8dd4c004 * move fcl sources to separate packages hace 18 años
example_xsl 8be887e018 * Patch from Graeme Geldenhuys to improve layout of generated report hace 17 años
exampletests 4226f08565 Regenerate with up-to-date fpcmake binary hace 12 años
tests 4226f08565 Regenerate with up-to-date fpcmake binary hace 12 años
DUnitCompatibleInterface.inc 5698d75c4c * Added more Delphi-compatibility wrappers hace 13 años
README.txt 5b8dd4c004 * move fcl sources to separate packages hace 18 años
consoletestrunner.pas 914b5a41d9 * Added SkipTimings option hace 12 años
digesttestreport.pp d7f7a9bb76 * patch by Alexander Shishkin to clean up $ifopt usage by $push/$pop, resolves #20346 hace 14 años
fpcunit.pp 518af06016 * Remove wrong lineinfo unit. It does not work with DWARF hace 13 años
fpcunitreport.pp 914b5a41d9 * Added SkipTimings option hace 12 años
fpmake.inc 5b8dd4c004 * move fcl sources to separate packages hace 18 años
fpmake.pp 5b8dd4c004 * move fcl sources to separate packages hace 18 años
latextestreport.pp 914b5a41d9 * Added SkipTimings option hace 12 años
plaintestreport.pp 914b5a41d9 * Added SkipTimings option hace 12 años
testdecorator.pp 5499e08c05 * Override EnableIgnore in TDecorator hace 17 años
testregistry.pp 2207d159d7 * Patch from Graeme Geldenhuys to easily add testsuites hace 18 años
testreport.pp 5b8dd4c004 * move fcl sources to separate packages hace 18 años
testutils.pp 8b40abdd19 * fcl-fpcunit/src/testutils.pp, GetMethodList: avoid range errors at runtime if compiled with -Cr. hace 13 años
ubmockobject.pp 5b8dd4c004 * move fcl sources to separate packages hace 18 años
xmlreporter.pas 2e1d0c07a5 * Fix compilation hace 12 años
xmltestreport.pp 6c0d61f879 * SkipTiming by Reinier hace 12 años

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.