Update tests for method weaving
This commit is contained in:
parent
c2aa3202ba
commit
5c43d02357
@ -17,8 +17,22 @@ public class MergeInject extends MergeTest implements Runnable {
|
||||
number = 10;
|
||||
}
|
||||
|
||||
@Inject(REPLACE)
|
||||
public String test(){
|
||||
@Inject(value = AFTER, target = "test()Ljava/lang/String;", acceptOriginalReturn = true)
|
||||
public String test(String retVal){
|
||||
System.out.println("Got retval: "+retVal);
|
||||
|
||||
if (retVal.equals("Test")) {
|
||||
System.out.println("Test");
|
||||
}
|
||||
|
||||
retVal = "ASDF";
|
||||
|
||||
String a = "retVal";
|
||||
|
||||
System.out.println(a);
|
||||
a = "Test";
|
||||
System.out.println(a);
|
||||
|
||||
System.out.println(s);
|
||||
|
||||
if(s.endsWith("e!!")) {
|
||||
|
@ -12,7 +12,7 @@ public class MergeTest {
|
||||
}
|
||||
|
||||
public String test(){
|
||||
return s;
|
||||
return s + "Test";
|
||||
}
|
||||
|
||||
public String test1(){
|
||||
|
Loading…
x
Reference in New Issue
Block a user