Skip to content

Commit

Permalink
[tests] Fixing failing tests on generated functions.
Browse files Browse the repository at this point in the history
Signed-off-by: Stéphane Galland <galland@arakhne.org>
  • Loading branch information
gallandarakhneorg committed May 3, 2017
1 parent 79f5dd7 commit 6fa5225
Showing 1 changed file with 7 additions and 7 deletions.
Expand Up @@ -112,7 +112,7 @@ public void fixMissedClassicPrototype_0() {
" throw new UnsupportedOperationException(\"TODO: auto-generated method stub\")",
" }",
" ",
" override fct2(i : int) {",
" override fct2(a : int) {",
" throw new UnsupportedOperationException(\"TODO: auto-generated method stub\")",
" }",
" ",
Expand Down Expand Up @@ -148,7 +148,7 @@ public void fixVariadicParameter_0() {
"}",
"skill S1 implements C1 {",
" ",
" override fct(is : int*) {",
" override fct(a : int*) {",
" throw new UnsupportedOperationException(\"TODO: auto-generated method stub\")",
" }",
" ",
Expand Down Expand Up @@ -183,11 +183,11 @@ public void fixVariadicParameter_1() {
"}",
"skill S1 implements C1 {",
" ",
" override fct1(is : int*) {",
" override fct1(a : int*) {",
" throw new UnsupportedOperationException(\"TODO: auto-generated method stub\")",
" }",
" ",
" override fct2(string : String, ds : double*) {",
" override fct2(b : String, c : double*) {",
" throw new UnsupportedOperationException(\"TODO: auto-generated method stub\")",
" }",
" ",
Expand Down Expand Up @@ -219,7 +219,7 @@ public void fixParameterDefaultValue_0() {
"}",
"skill S1 implements C1 {",
" ",
" override fct(i : int = 4) {",
" override fct(a : int = 4) {",
" throw new UnsupportedOperationException(\"TODO: auto-generated method stub\")",
" }",
" ",
Expand Down Expand Up @@ -251,7 +251,7 @@ public void fixParameterDefaultValue_1() {
"}",
"skill S1 implements C1 {",
" ",
" override fct(i : int = 4, string : String) {",
" override fct(a : int = 4, b : String) {",
" throw new UnsupportedOperationException(\"TODO: auto-generated method stub\")",
" }",
" ",
Expand Down Expand Up @@ -309,7 +309,7 @@ public void fixParameterDefaultValueAndVariadicParameter() {
"}",
"skill S1 implements C1 {",
" ",
" override fct(i : int = 4, string : String, js : int*) {",
" override fct(a : int = 4, b : String, c : int*) {",
" throw new UnsupportedOperationException(\"TODO: auto-generated method stub\")",
" }",
" ",
Expand Down

0 comments on commit 6fa5225

Please sign in to comment.