Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Eclipse Projects
Eclipse simopenpass
MantleAPI
Commits
969fc433
Commit
969fc433
authored
Aug 12, 2021
by
Matthias Greuter
Browse files
Adjust mock to reflect interface change in entity repository
parent
d6ea2bd6
Changes
1
Hide whitespace changes
Inline
Side-by-side
MantleAPI/test/MantleAPI/Test/test_utils.h
View file @
969fc433
...
...
@@ -238,12 +238,12 @@ class MockEntityRepository : public mantle_api::IEntityRepository
MOCK_METHOD
(
mantle_api
::
IStaticObject
&
,
Create
,
(
const
std
::
string
&
name
,
const
mantle_api
::
StaticObjectProperties
&
properties
),
(
const
std
::
string
&
name
,
std
::
unique_ptr
<
mantle_api
::
StaticObjectProperties
>
properties
),
(
override
));
mantle_api
::
IStaticObject
&
Create
(
mantle_api
::
UniqueId
id
,
const
std
::
string
&
name
,
const
mantle_api
::
StaticObjectProperties
&
properties
)
override
std
::
unique_ptr
<
mantle_api
::
StaticObjectProperties
>
properties
)
override
{
std
::
ignore
=
id
;
std
::
ignore
=
name
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment