Skip to content
Snippets Groups Projects
Commit e32c7b61 authored by felmer's avatar felmer
Browse files

LMS-1186 tests fixed

SVN: 12681
parent 5a1cef24
No related branches found
No related tags found
No related merge requests found
...@@ -165,6 +165,9 @@ public final class CachedResultSetManagerTest ...@@ -165,6 +165,9 @@ public final class CachedResultSetManagerTest
one(resultSetConfig).getResultSetKey(); one(resultSetConfig).getResultSetKey();
will(returnValue(null)); will(returnValue(null));
one(resultSetConfig).getAvailableColumns();
will(returnValue(null));
one(originalDataProvider).getOriginalData(); one(originalDataProvider).getOriginalData();
will(returnValue(Collections.emptyList())); will(returnValue(Collections.emptyList()));
...@@ -188,6 +191,9 @@ public final class CachedResultSetManagerTest ...@@ -188,6 +191,9 @@ public final class CachedResultSetManagerTest
one(resultSetConfig).getResultSetKey(); one(resultSetConfig).getResultSetKey();
will(returnValue("1")); will(returnValue("1"));
one(resultSetConfig).getAvailableColumns();
will(returnValue(null));
allowResultSetCreation(this); allowResultSetCreation(this);
} }
}); });
...@@ -209,6 +215,9 @@ public final class CachedResultSetManagerTest ...@@ -209,6 +215,9 @@ public final class CachedResultSetManagerTest
one(resultSetConfig).getResultSetKey(); one(resultSetConfig).getResultSetKey();
will(returnValue(null)); will(returnValue(null));
one(resultSetConfig).getAvailableColumns();
will(returnValue(null));
one(originalDataProvider).getOriginalData(); one(originalDataProvider).getOriginalData();
will(returnValue(Collections.singletonList(value))); will(returnValue(Collections.singletonList(value)));
......
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