@param dir the directory containing the test case @param main main class of the test case @param id analysis ID @return the expected file for given test case and analysis.
(String dir, String main, String id)
| 200 | * @return the expected file for given test case and analysis. |
| 201 | */ |
| 202 | private static String getExpectedFile(String dir, String main, String id) { |
| 203 | String fileName = String.format("%s-%s-expected.txt", main, id); |
| 204 | return Path.of(dir, fileName).toString(); |
| 205 | } |
| 206 | } |