Gets the current value of the stress test switch.
Kernel.bdh
GetStressTest(): boolean;
true if stress test is set
false otherwise
dcltrans transaction TInit begin write("StressTest: "); if GetStressTest() then write("true") else write("false") end; writeln; end TInit;