}
protected void testDetectInstall(Path installPath, String compilerPathStr, String resolvedCompilerPathStr,
ECompilerType type, List<String> pathStrings) {
Path compilerPath = installPath.resolve(compilerPathStr).normalize();
CompilerInstall install = detector.detectInstallFromCompilerCommandPath(compilerPath);
Path resolvedCompilerPath = installPath.resolve(resolvedCompilerPathStr).normalize();
checkInstall(install, resolvedCompilerPath, type, installPath, pathStrings);
}