Toggle navigation
Toggle navigation
This project
Loading...
Sign in
grogv3
/
grog-cubi
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jean-Francois Leveque
2017-02-07 14:39:30 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7d3090f772acdf060d030dd136e7e40e88b23534
7d3090f7
1 parent
aa9455fc
Simplification spécification de type
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/test/java/org/legrog/web/xyz/ListCountriesViewTest.java
src/test/java/org/legrog/web/xyz/ListCountriesViewTest.java
View file @
7d3090f
...
...
@@ -29,7 +29,7 @@ public class ListCountriesViewTest {
@BeforeEach
public
void
setup
(
@Mock
SharedService
sharedService
)
throws
Exception
{
countryList
=
new
ArrayList
<
Country
>();
countryList
=
new
ArrayList
<>();
listCountriesView
=
new
ListCountriesView
(
sharedService
);
when
(
sharedService
.
getAllCountries
()).
thenReturn
(
countryList
);
...
...
Please
register
or
login
to post a comment