vcjmhg commented on pull request #5493:
URL: https://github.com/apache/skywalking/pull/5493#issuecomment-695790167
> Note, WebFlux case is still failing.
Sir,I have move the testcase of webflux to projectA.The code just like this:
```java
public String testcase() throws IOException {
visit("http://" + hostBAddress + "/testcase/annotation/success");
visit("http://" + hostBAddress + "/testcase/annotation/error");
visit("http://" + hostBAddress + "/testcase/annotation/foo");
visit("http://" + hostBAddress + "/testcase/annotation/loo");
visit("http://" + hostBAddress + "/testcase/route/success");
visit("http://" + hostBAddress + "/testcase/route/error");
visit("http://" + hostBAddress + "/notFound");
visit("http://" + hostBAddress + "/testcase/annotation/mono/hello");
testGet("http://" + hostBAddress + "/testcase/annotation/success");
return "test";
}
private void testGet(String remoteUri) {
Mono<String> response = WebClient
.create()
.get()
.uri(remoteUri)
.retrieve()
.bodyToMono(String.class);
response.subscribe();
}
```
But I seems that I could't write anything in `expcetedData.yaml`.Or I just
need write the segment named `/testcase/annotation/success` which be called.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]