Possible divide by zero in GUI Test Runner
Brought to you by:
pvspain
Possible divide by zero in TGUITestRunner.UpdateStatus, on line https://sourceforge.net/p/dunit2/code/HEAD/tree/trunk/src/GUITestRunner.pas#l1171
LbProgress.Caption := IntToStr((100 * ScoreBar.Position) div ScoreBar.Max) + '%';
It is possible that ScoreBar.Max to be zero, so a check should be made before hand.