I using Visual Cobol IDE to generate Cobol Unit Test case for each cobol program in my project, base on guide : https://www.microfocus.com/documentation/visual-cobol/VC40/EclUNIX/GUID-D5F12D24-BB4D-4CC4-920B-0A4DE99E1F29.html
But, I see that it only generate one case for each program
Ex : with 'XXX.cbl' file which has 2 procedures are PROCEDURE1, PROCEDURE2,..., it only generate in XXXTest.cbl (test case file) such as :
call "XXX" using by reference LINK-AREA-IO-01,
Instead of,
call "PROCEDURE1" using by reference LINK-AREA-IO-01,
.....
call "PROCEDURE2" using by reference LINK-AREA-IO-02,
Visual Cobol IDE can support to generate same that or I have to self write by hand ?









