Skip to content

Commit

Permalink
fixing #44
Browse files Browse the repository at this point in the history
  • Loading branch information
phtcosta committed Dec 1, 2021
1 parent 89f5f64 commit 70886e9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ loc fooBarStatic = |project://JimpleFramework/target/test-classes/samples/points


test bool testFooBar(){
ClassOrInterfaceDeclaration c = decompile(fooBar);
ClassOrInterfaceDeclaration c = decompile(fooBar,true);

Method bar = getMethodByName(c,"bar");

Expand All @@ -33,7 +33,7 @@ test bool testFooBar(){
}

test bool testFooBarStatic(){
ClassOrInterfaceDeclaration c = decompile(fooBarStatic);
ClassOrInterfaceDeclaration c = decompile(fooBarStatic,true);

Method bar = getMethodByName(c,"bar");

Expand All @@ -52,7 +52,7 @@ test bool testFooBarStatic(){
}

test bool testFooBarStaticMultipleArgs(){
ClassOrInterfaceDeclaration c = decompile(fooBarStatic);
ClassOrInterfaceDeclaration c = decompile(fooBarStatic,true);

//multipleArgs(int x, Node x1, double y, Node y1, Node s[])
Method bar = getMethodByName(c,"multipleArgs");
Expand Down

0 comments on commit 70886e9

Please sign in to comment.