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

SSDM-949: Introducing class SearchDomain and using it in SearchDomainSearchResult.

SVN: 32507
parent 1cd78fcb
No related branches found
No related tags found
No related merge requests found
...@@ -821,7 +821,8 @@ test("searchOnSearchDomain()", function() { ...@@ -821,7 +821,8 @@ test("searchOnSearchDomain()", function() {
facade.searchForDataSetsWithSequences(preferredSearchDomainOrNull, sequenceSnippet, optionalParametersOrNull, function(response) { facade.searchForDataSetsWithSequences(preferredSearchDomainOrNull, sequenceSnippet, optionalParametersOrNull, function(response) {
assertObjectsCount(response.result, 2); assertObjectsCount(response.result, 2);
assertObjectsWithValues(response.result, 'searchDomain', [ "Echo database" ]); searchDomain = response.result['searchDomain'];
assertObjectsWithValues(searchDomain, 'name', [ "Echo database" ]);
location = response.result['resultLocation']; location = response.result['resultLocation'];
assertObjectsWithValues(location, 'dataSetCode', [ "20130415093804724-403" ]); assertObjectsWithValues(location, 'dataSetCode', [ "20130415093804724-403" ]);
assertObjectsWithValues(location, 'pathInDataSet', [ "PATH-2" ]); assertObjectsWithValues(location, 'pathInDataSet', [ "PATH-2" ]);
......
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