Searched refs:getHistoryEntries (Results 1 - 21 of 21) sorted by relevance

/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DPerforceHistoryParserTest.java72 assertEquals(4, result.getHistoryEntries().size());
74 HistoryEntry e1 = result.getHistoryEntries().get(0);
80 HistoryEntry e2 = result.getHistoryEntries().get(1);
83 HistoryEntry e3 = result.getHistoryEntries().get(2);
86 HistoryEntry e4 = result.getHistoryEntries().get(3);
123 assertEquals(4, result.getHistoryEntries().size());
125 HistoryEntry e1 = result.getHistoryEntries().get(0);
131 HistoryEntry e2 = result.getHistoryEntries().get(1);
134 HistoryEntry e3 = result.getHistoryEntries().get(2);
137 HistoryEntry e4 = result.getHistoryEntries()
[all...]
H A DClearCaseHistoryParserTest.java111 assertEquals(4, result.getHistoryEntries().size());
113 HistoryEntry e1 = result.getHistoryEntries().get(0);
119 HistoryEntry e4 = result.getHistoryEntries().get(3);
175 assertEquals(4, result.getHistoryEntries().size());
177 HistoryEntry e1 = result.getHistoryEntries().get(0);
183 HistoryEntry e4 = result.getHistoryEntries().get(3);
H A DSubversionHistoryParserTest.java69 assertNotNull(result.getHistoryEntries());
70 assertTrue("Should not contain any history entries", 0 == result.getHistoryEntries().size());
134 assertNotNull(result.getHistoryEntries());
135 assertEquals(3, result.getHistoryEntries().size());
137 HistoryEntry e1 = result.getHistoryEntries().get(0);
143 HistoryEntry e2 = result.getHistoryEntries().get(1);
149 HistoryEntry e3 = result.getHistoryEntries().get(2);
H A DBazaarHistoryParserTest.java69 assertNotNull(result.getHistoryEntries());
71 0 == result.getHistoryEntries().size());
124 assertNotNull(result.getHistoryEntries());
125 assertEquals(3, result.getHistoryEntries().size());
127 HistoryEntry e1 = result.getHistoryEntries().get(0);
132 HistoryEntry e2 = result.getHistoryEntries().get(1);
137 HistoryEntry e3 = result.getHistoryEntries().get(2);
178 assertNotNull(result.getHistoryEntries());
179 assertEquals(1, result.getHistoryEntries().size());
181 HistoryEntry e1 = result.getHistoryEntries()
[all...]
H A DCVSHistoryParserTest.java69 assertTrue("Should not contain any history entries", 0 == result.getHistoryEntries().size());
113 assertEquals(3, result.getHistoryEntries().size());
114 HistoryEntry e0 = result.getHistoryEntries().get(0);
118 HistoryEntry e1 = result.getHistoryEntries().get(1);
122 HistoryEntry e2 = result.getHistoryEntries().get(2);
H A DGitHistoryParserTest.java73 assertTrue("Should not contain any history entries", 0 == result.getHistoryEntries().size());
128 assertTrue("Should contain three history entries", 3 == result.getHistoryEntries().size());
129 HistoryEntry e0 = result.getHistoryEntries().get(0);
133 HistoryEntry e1 = result.getHistoryEntries().get(1);
137 HistoryEntry e2 = result.getHistoryEntries().get(2);
191 assertTrue("Should contain two history entries", 2 == result.getHistoryEntries().size());
192 HistoryEntry e0 = result.getHistoryEntries().get(0);
199 HistoryEntry e1 = result.getHistoryEntries().get(1);
276 assertTrue("Should contain two history entries", 2 == result.getHistoryEntries().size());
277 HistoryEntry e0 = result.getHistoryEntries()
[all...]
H A DJDBCHistoryCacheTest.java281 assertSameEntries(retrievedHistory.getHistoryEntries(),
282 retrievedHistory2.getHistoryEntries());
285 retrievedHistory2.getHistoryEntries().isEmpty());
287 List<HistoryEntry> entries = retrievedHistory.getHistoryEntries();
310 assertSameEntries(historyToStore.getHistoryEntries(),
311 dirHistory.getHistoryEntries());
313 assertSameEntries(historyToStore.getHistoryEntries(),
314 retrievedHistory2.getHistoryEntries());
317 retrievedHistory2.getHistoryEntries().isEmpty());
339 updatedHistory.getHistoryEntries());
[all...]
H A DRazorHistoryParserTest.java74 assertEquals(0, result.getHistoryEntries().size());
112 assertEquals(2, result.getHistoryEntries().size());
113 HistoryEntry h1 = result.getHistoryEntries().get(0);
H A DMercurialRepositoryTest.java75 List<HistoryEntry> entries = hist.getHistoryEntries();
95 List<HistoryEntry> entries = hist.getHistoryEntries();
H A DPerforceRepositoryTest.java91 for (HistoryEntry entry : history.getHistoryEntries()) {
H A DHistoryGuruTest.java109 instance.getHistory(f).getHistoryEntries()) {
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DHistory.java60 public List<HistoryEntry> getHistoryEntries() { method in class:History
H A DHistoryReader.java41 entries = history.getHistoryEntries();
H A DRepository.java125 for (HistoryEntry entry : history.getHistoryEntries()) {
H A DFileHistoryCache.java190 if (history.getHistoryEntries() == null) {
197 for (HistoryEntry e : history.getHistoryEntries()) {
H A DJDBCHistoryCache.java621 if (history == null || history.getHistoryEntries().isEmpty()) {
703 // getHistoryEntries() returns the entries in reverse chronological
709 List<HistoryEntry> entries = history.getHistoryEntries();
954 for (HistoryEntry entry : history.getHistoryEntries()) {
1005 for (HistoryEntry entry : history.getHistoryEntries()) {
H A DPerforceRepository.java76 PerforceHistoryParser.getRevisions(file, rev).getHistoryEntries();
H A DDirectoryHistoryReader.java224 for (HistoryEntry entry : hist.getHistoryEntries()) {
H A DMercurialRepository.java380 for (HistoryEntry e : hist.getHistoryEntries()) {
H A DHistoryGuru.java149 for (HistoryEntry he : hist.getHistoryEntries()) {
/opengrok-jel/src/org/opensolaris/opengrok/search/context/
H A DHistoryContext.java172 Iterator<HistoryEntry> it = in.getHistoryEntries().iterator();

Completed in 27 milliseconds