1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

Bug 263201 Test fixes

This commit is contained in:
James Blackburn 2009-03-22 15:00:12 +00:00
parent 1f8d69201e
commit f858d74e02

View file

@ -429,7 +429,8 @@ public class ErrorParserFileMatchingTest extends TestCase {
ProblemMarkerInfo problemMarkerInfo = errorList.get(0);
// No match found
assertEquals("P/FindMatchingFilesTest",problemMarkerInfo.file.toString());
assertEquals("testDuplicateSymbolicLink.c error",problemMarkerInfo.description);
assertEquals(new Path("testDuplicateSymbolicLink.c"),problemMarkerInfo.externalPath);
assertEquals("error",problemMarkerInfo.description);
}
/**
@ -477,7 +478,8 @@ public class ErrorParserFileMatchingTest extends TestCase {
ProblemMarkerInfo problemMarkerInfo = errorList.get(0);
// No match found
assertEquals("P/FindMatchingFilesTest",problemMarkerInfo.file.toString());
assertEquals("testDuplicateFolderSymbolicLink.c error",problemMarkerInfo.description);
assertEquals(new Path("testDuplicateFolderSymbolicLink.c"),problemMarkerInfo.externalPath);
assertEquals("error",problemMarkerInfo.description);
}
/**