Previous Topic Next topic Print topic


Compiling Tests

The COBOL program that contains your test case(s) must be compiled to .dll before it can run.

cbllink -D mytestfixture.cbl

Once it is compiled, you must run the resulting file from the command line.

Procedural managed code

You must compile the procedural managed COBOL programs as .dll using the the ILGEN(sub) directive. For example:

cobol myunittest.cbl ilgen(sub);
mfurunil myunittest.dll
Previous Topic Next topic Print topic