Skip to content

Commit 8616133

Browse files
committed
fix test ressources
1 parent e8d61e7 commit 8616133

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ FJMUModelUpdater new
3737
You can build the `output.json` with VerveineJ with the following command.
3838

3939
```st
40-
docker run -v "/path/to/FamixJavaModelUpdater/tests:/src" ghcr.io/evref-bl/verveinej:v3.0.7 -format json -o output.json -alllocals -anchor assoc .
40+
docker run -v "/path/to/FamixJavaModelUpdater/tests:/src" ghcr.io/evref-bl/verveinej:v3.0.13 -format json -o output.json -alllocals -anchor assoc .
4141
```

tests/src/fr/badetitou/association/MyClass.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import fr.badetitou.external.ExternalFamixJavaClass;
44
import fr.badetitou.exception.MyException;
55
import fr.badetitou.interfaces.MyInterface;
6+
import fr.badetitou.parametrized.MyParametrizable;
67
import fr.badetitou.association.mysuper.MySuperClass;
78

89
public class MyClass extends MySuperClass implements MyInterface {

tests/src/fr/badetitou/association/mysuper/MySuperClass.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package fr.badetitou.association.mysuper;
22

33

4-
public class MySuperClass () {
4+
public class MySuperClass {
55

6-
void aSuperMethod() {
6+
protected void aSuperMethod() {
77

88
}
99

tests/src/fr/badetitou/external/ExternalFamixJavaClass.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
public class ExternalFamixJavaClass {
66

77
public MyClass externalFamixJavaMethod() {
8-
8+
return new MyClass();
99
}
1010
}

tests/src/fr/badetitou/parametrized/MyParametrizable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
public class MyParametrizable<E extends Object> {
66

7-
E myMethod() {
8-
return null
7+
public E myMethod() {
8+
return null;
99
}
1010

1111
}

0 commit comments

Comments
 (0)