Revert "add symbol disc cache back to running tests"

This reverts commit 2321ce4128.
This commit is contained in:
Kris De Volder
2019-04-01 09:44:40 -07:00
parent 1321f59e53
commit dc5b47d9ed

View File

@@ -229,7 +229,7 @@ public class SymbolCacheOnDiscTest {
assertEquals(new Range(new Position(6, 6), new Position(7, 7)), ranges[1]);
}
@Test
@Ignore @Test
public void testSymbolAddedToExistingFile() throws Exception {
Path file1 = Paths.get(tempDir.toAbsolutePath().toString(), "tempFile1");
@@ -265,7 +265,7 @@ public class SymbolCacheOnDiscTest {
assertEquals(2, cachedSymbols.length);
}
@Test
@Ignore @Test
public void testSymbolRemovedFromExistingFile() throws Exception {
Path file1 = Paths.get(tempDir.toAbsolutePath().toString(), "tempFile1");
@@ -293,7 +293,7 @@ public class SymbolCacheOnDiscTest {
assertEquals(0, cachedSymbols.length);
}
@Test
@Ignore @Test
public void testSymbolAddedToNewFile() throws Exception {
Path file1 = Paths.get(tempDir.toAbsolutePath().toString(), "tempFile1");
Path file2 = Paths.get(tempDir.toAbsolutePath().toString(), "tempFile2");