show/hide this revision's text 2 deleted 1 characters in body

If the problem does not appear in a small test application, you could do a 'binary search':

Add more units (and calls to methods in these units) of the big app to the test application, and check if the problem appears.

If yes, remove some units until the problem goes away.

If notno, add more units and test again until the problem appears.

After some iterations, you should find units/operations which cause the problem.

show/hide this revision's text 1

If the problem does not appear in a small test application, you could do a 'binary search':

Add more units (and calls to methods in these units) of the big app to the test application, and check if the problem appears.

If yes, remove some units until the problem goes away.

If not, add more units and test again until the problem appears.

After some iterations, you should find units/operations which cause the problem.