private TestCaseFinderResult searchInFiles(IFile[] loadedFiles,
String testCaseName, String testName) {
TextSearchEngine engine = TextSearchEngine.create();
TestCaseSearchRequestor requestor = new TestCaseSearchRequestor();
engine.search(loadedFiles, requestor, createPattern(testCaseName, testName),
new NullProgressMonitor());
return requestor.getResult();
}
private Pattern createPattern(String testCaseName, String testName) {