Extending initialization and finalization during a test run
You can specify code for your protocol to be executed by the Test Performance engine threads at strategic points during startup and shutdown. For example, you can specify code to load libraries, unload libraries, or perform other initialization or cleanup as required by the protocol.
IKInitializeFinalize. The interface
requires the following methods:public void initializeEngine()public void finalizeEngine()public void initializeWorker()public void finalizeWorker()public interface IKInitializeFinalize
The
IKInitializeFinalize interface provides a way for protocols to specify
code that must be executed to the Test Performance engine: - once by the engine at startup
- once by the engine at shutdown
- once by each engine worker thread at startup
- once by each engine worker thread at shutdown