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
one(resultSetConfig).getResultSetKey();
will(returnValue(null));
one(resultSetConfig).getAvailableColumns();
will(returnValue(null));
one(originalDataProvider).getOriginalData();
will(returnValue(Collections.emptyList()));
......@@ -188,6 +191,9 @@ public final class CachedResultSetManagerTest
one(resultSetConfig).getResultSetKey();
will(returnValue("1"));
one(resultSetConfig).getAvailableColumns();
will(returnValue(null));
allowResultSetCreation(this);
}
});
......@@ -209,6 +215,9 @@ public final class CachedResultSetManagerTest
one(resultSetConfig).getResultSetKey();
will(returnValue(null));
one(resultSetConfig).getAvailableColumns();
will(returnValue(null));
one(originalDataProvider).getOriginalData();
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