-
Overview
The diagram below shows a typical testszenario. The CxxTester reads instructions from a testscript, executes calls to the targetsoftware and writes the validated results to an outputfile. This can be ...
-
Tracing
}
Every method or function which should be traced, must start with the trace command DINOUT("name"). If this command is provided, all internal states can be traced with the
...
-
Download
(for Win 95/98/ME/NT/2000/XP with MS VisualStudio )
-
Concept
An important attribute of CxxTester is, that the syntax of the input script reflects in a natural way the C++ interface of the target software.The example below should explain the concept behind
...
-
Arrays
twodim[0][] { 11 12 13 }
int i11 = DIN["twodim"][0][0];
twodim[1][] { 21 22 23 24 25 }
int i12 = DIN["twodim"][0][1];
twodim[2][] { 31 32}
int i32 = DIN["twodim"][2][1];
Structs may contai...
-
Detailview
The diagram below illustrates a testszenarion where the software which is under test needs further server units. For some reasons it might be useful not to invoke the original software as server unit:...