For native COBOL tests, the program that contains your test case(s) can be compiled to one of the following formats: .dll , .int, or .gnt.
cbllink -D mytestfixture.cbl
cobol mytestfixture.cbl gnt"";
Once it is compiled, you must run the resulting file from the command line.
You must compile the procedural .NET COBOL programs as .dll using the the ILGEN(sub) directive. For example:
cobol myunittest.cbl ilgen(sub); mfurunil myunittest.dll