Skip to content
Snippets Groups Projects
Commit 7a9b0490 authored by anttil's avatar anttil
Browse files

Fix CachedResultSetManagerTest

SVN: 35637
parent ffaa6620
No related branches found
No related tags found
No related merge requests found
...@@ -959,25 +959,16 @@ public final class CachedResultSetManagerTest extends AssertJUnit ...@@ -959,25 +959,16 @@ public final class CachedResultSetManagerTest extends AssertJUnit
allowing(keyGenerator).createKey(); allowing(keyGenerator).createKey();
will(returnValue(KEY)); will(returnValue(KEY));
one(originalDataProvider).getOriginalData(maxSize);
DataHolder[] rows = new DataHolder[size]; DataHolder[] rows = new DataHolder[size];
for (int i = 0; i < rows.length; i++) for (int i = 0; i < rows.length; i++)
{ {
rows[i] = new DataHolder(i + "-a" + i % 2); rows[i] = new DataHolder(i + "-a" + i % 2);
} }
one(originalDataProvider).getOriginalData(Integer.MAX_VALUE);
will(returnValue(Arrays.asList(rows))); will(returnValue(Arrays.asList(rows)));
one(originalDataProvider).getHeaders(); one(originalDataProvider).getHeaders();
will(returnValue(Arrays.asList())); will(returnValue(Arrays.asList()));
// if (size >= maxSize)
// {
// one(originalDataProvider).getOriginalData(Integer.MAX_VALUE);
// will(returnValue(Arrays.asList(rows)));
// one(originalDataProvider).getHeaders();
// will(returnValue(Arrays.asList()));
// }
allowing(customColumnsProvider).getGridCustomColumn(SESSION_TOKEN, allowing(customColumnsProvider).getGridCustomColumn(SESSION_TOKEN,
GRID_DISPLAY_ID); GRID_DISPLAY_ID);
will(returnValue(Arrays.asList(columns))); will(returnValue(Arrays.asList(columns)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment