This is the codeAbility Sharing Platform! Learn more about the
codeAbility Sharing Platform
.
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
codeAbility Sharing Platform
Manage
Activity
Members
Labels
Plan
Issues
43
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
development
sharing
codeAbility Sharing Platform
Commits
19897f22
Commit
19897f22
authored
3 years ago
by
Michael Breu
Browse files
Options
Downloads
Patches
Plain Diff
Fixing Tests
parent
67fefa51
2 merge requests
!50
Merge 2021 May Sprint
,
!49
Resolve "Umstellung Connector Plugin auf V0.1.2"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/test/java/at/ac/uibk/gitsearch/service/SearchServiceIT.java
+3
-3
3 additions, 3 deletions
...st/java/at/ac/uibk/gitsearch/service/SearchServiceIT.java
with
3 additions
and
3 deletions
src/test/java/at/ac/uibk/gitsearch/service/SearchServiceIT.java
+
3
−
3
View file @
19897f22
...
...
@@ -104,7 +104,7 @@ public class SearchServiceIT {
@Test
public
void
testSearchByAutor
()
throws
Exception
{
final
String
PODLIPNIG
=
"Stefan Podlipnig"
;
final
SearchInputMetadataDTO
searchMetadata
=
new
SearchInputMetadataDTO
(
null
,
null
,
null
,
PODLIPNIG
,
null
,
null
);
final
SearchInputMetadataDTO
searchMetadata
=
new
SearchInputMetadataDTO
(
null
,
null
,
null
,
null
,
PODLIPNIG
,
null
);
SearchInputDTO
searchQuery
=
new
SearchInputDTO
(
null
,
searchMetadata
,
null
,
null
,
null
,
0
);
SearchResultsDTO
searchResultPage
=
searchService
.
searchResultPage
(
searchQuery
,
SearchInputDTO
.
PAGE_SIZE
);
...
...
@@ -130,8 +130,8 @@ public class SearchServiceIT {
@Test
public
void
testCreatorSearch
()
throws
IOException
{
searchClient
.
getLowLevelClient
().
getNodes
().
forEach
(
n
->
{
LOGGER
.
info
(
"Using node {}"
,
n
);});
final
SearchInputMetadataDTO
searchMetadata
=
new
SearchInputMetadataDTO
(
null
,
null
,
null
,
"Podlipnig"
,
null
,
null
);
final
SearchInputMetadataDTO
searchMetadata
=
new
SearchInputMetadataDTO
(
null
,
null
,
null
,
null
,
"Podlipnig"
,
null
);
SearchInputDTO
searchQuery
=
new
SearchInputDTO
(
null
,
searchMetadata
,
null
,
null
,
null
,
0
);
SearchResultsDTO
searchResultPage
=
searchService
.
searchResultPage
(
searchQuery
,
SearchInputDTO
.
PAGE_SIZE
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment