You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that HttpClientAdapter is deprecated and replaced by HttpExchangeAdapter
and ReactorHttpExchangeAdapter, our tests should use the new contracts.
See gh-30117
Copy file name to clipboardExpand all lines: spring-web/src/test/java/org/springframework/web/service/invoker/HttpExchangeAdapterServiceMethodTests.java
+3-5
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@
19
19
importorg.junit.jupiter.api.BeforeEach;
20
20
21
21
/**
22
-
* Tests for {@link HttpServiceMethod} with a blocking test {@link TestHttpExchangeAdapter} that
22
+
* Tests for {@link HttpServiceMethod} with a blocking test {@link TestExchangeAdapter} that
23
23
* stubs the client invocations.
24
24
* <p>
25
25
* The tests do not create or invoke {@code HttpServiceMethod} directly but rather use
@@ -32,10 +32,8 @@ class HttpExchangeAdapterServiceMethodTests extends HttpServiceMethodTests {
Copy file name to clipboardExpand all lines: spring-web/src/test/java/org/springframework/web/service/invoker/ReactorExchangeAdapterHttpServiceMethodTests.java
+3-5
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@
20
20
21
21
/**
22
22
* Tests for {@link HttpServiceMethod} with an {@link HttpExchangeAdapter}
23
-
* build from a test {@link TestHttpClientAdapter} that stubs the client invocations.
23
+
* build from a test {@link TestReactorExchangeAdapter} that stubs the client invocations.
24
24
* <p>
25
25
* The tests do not create or invoke {@code HttpServiceMethod} directly but rather use
26
26
* {@link HttpServiceProxyFactory} to create a service proxy in order to use a strongly
@@ -32,10 +32,8 @@ public class ReactorExchangeAdapterHttpServiceMethodTests extends ReactiveHttpSe
Copy file name to clipboardExpand all lines: spring-web/src/test/java/org/springframework/web/service/invoker/RequestAttributeArgumentResolverTests.java
0 commit comments