Description
Sometimes there is only one analysis step in the SARIF report

To Reproduce
Steps to reproduce the behavior:
- Choose the default test directory:
  
- Run test generation on
public class Util {
    public static int multiply(int x, int y) {
        return Math.multiplyExact(x, y);
    }
}
- Check the Analysis steps
Expected behavior
There are 2 steps: from UtilTest.java and from Util.java.
Actual behavior
Only one step from the source code.