Skip to content

Commit

Permalink
fix uts
Browse files Browse the repository at this point in the history
  • Loading branch information
chickenlj committed Aug 4, 2020
1 parent 52b146f commit 730602c
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@ public String getTargetServiceUniqueName() {
return delegate.getTargetServiceUniqueName();
}

@Override
public String getProtocolServiceKey() {
return delegate.getProtocolServiceKey();
}

@Override
public String getMethodName() {
return delegate.getMethodName();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ public void setInvoker(Invoker<?> invoker) {
this.invoker = invoker;
}

@Override
public String getProtocolServiceKey() {
return null;
}

public String getMethodName() {
return methodName;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ public String getTargetServiceUniqueName() {
return null;
}

@Override
public String getProtocolServiceKey() {
return null;
}

@Override
public String getMethodName() {
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ public String getTargetServiceUniqueName() {
return null;
}

@Override
public String getProtocolServiceKey() {
return null;
}

public String getMethodName() {
return "echo";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ public String getTargetServiceUniqueName() {
return null;
}

@Override
public String getProtocolServiceKey() {
return null;
}

public String getMethodName() {
return "echo";
}
Expand Down

0 comments on commit 730602c

Please sign in to comment.