if (result == null) {
// The test was cancelled
return;
}
if (result.getOutcome() == TestResult.SUCCESS) {
LocationSpecificConnectionDetails details = result.getLocationSpecificDetails();
if (details instanceof MatchingFileList) {
showMatchingFiles(testedEntity, (MatchingFileList) details);
} else {
showGeneralSuccessMessage(testedEntity);
}