Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
monticore
EmbeddedMontiArc
generators
EMAM2Cpp
Commits
ede6d907
Commit
ede6d907
authored
Jun 20, 2018
by
Alexander David Hellwig
Browse files
Fix: Test results: " = " -> "=" in param init
parent
80eca448
Changes
6
Hide whitespace changes
Inline
Side-by-side
src/test/resources/results/configPort/testing_adaptableParameterInstance_adaptableParameter.h
View file @
ede6d907
...
...
@@ -11,8 +11,8 @@ double param2;
double
out1
;
void
init
(
double
param1
,
double
param2
)
{
this
->
param1
=
param1
;
this
->
param2
=
param2
;
this
->
param1
=
param1
;
this
->
param2
=
param2
;
}
void
execute
()
{
...
...
src/test/resources/results/configPort/testing_adaptableParameterInstance_adaptableParameter2.h
View file @
ede6d907
...
...
@@ -11,8 +11,8 @@ double param2;
double
out1
;
void
init
(
double
param1
,
double
param2
)
{
this
->
param1
=
param1
;
this
->
param2
=
param2
;
this
->
param1
=
param1
;
this
->
param2
=
param2
;
}
void
execute
()
{
...
...
src/test/resources/results/testing/Parameter/testing_parameterInstance_multipleParameter.h
View file @
ede6d907
...
...
@@ -11,9 +11,9 @@ double param2;
double
param3
;
void
init
(
double
param1
,
double
param2
,
double
param3
)
{
this
->
param1
=
param1
;
this
->
param2
=
param2
;
this
->
param3
=
param3
;
this
->
param1
=
param1
;
this
->
param2
=
param2
;
this
->
param3
=
param3
;
}
void
execute
()
{
...
...
src/test/resources/results/testing/Parameter/testing_parameterInstance_multipleParameter2.h
View file @
ede6d907
...
...
@@ -11,9 +11,9 @@ double param2;
double
param3
;
void
init
(
double
param1
,
double
param2
,
double
param3
)
{
this
->
param1
=
param1
;
this
->
param2
=
param2
;
this
->
param3
=
param3
;
this
->
param1
=
param1
;
this
->
param2
=
param2
;
this
->
param3
=
param3
;
}
void
execute
()
{
...
...
src/test/resources/results/testing/Parameter/testing_parameterInstance_singleParameter.h
View file @
ede6d907
...
...
@@ -9,7 +9,7 @@ public:
double
param1
;
void
init
(
double
param1
)
{
this
->
param1
=
param1
;
this
->
param1
=
param1
;
}
void
execute
()
{
...
...
src/test/resources/results/testing/Parameter/testing_parameterInstance_singleParameter2.h
View file @
ede6d907
...
...
@@ -9,7 +9,7 @@ public:
double
param1
;
void
init
(
double
param1
)
{
this
->
param1
=
param1
;
this
->
param1
=
param1
;
}
void
execute
()
{
...
...
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