@@ -40,7 +40,7 @@ public abstract class SimpleAsyncHttpClientTest extends AbstractBasicTest {
40
40
private final static String MY_MESSAGE = "my message" ;
41
41
42
42
@ Test (groups = { "standalone" , "default_provider" })
43
- public void inpuStreamBodyConsumerTest () throws Throwable {
43
+ public void inputStreamBodyConsumerTest () throws Throwable {
44
44
45
45
SimpleAsyncHttpClient client = new SimpleAsyncHttpClient .Builder ().setIdleConnectionInPoolTimeoutInMs (100 ).setMaximumConnectionsTotal (50 ).setRequestTimeoutInMs (5 * 60 * 1000 ).setUrl (getTargetUrl ()).setHeader ("Content-Type" , "text/html" ).build ();
46
46
try {
@@ -56,7 +56,7 @@ public void inpuStreamBodyConsumerTest() throws Throwable {
56
56
}
57
57
58
58
@ Test (groups = { "standalone" , "default_provider" })
59
- public void StringBuilderBodyConsumerTest () throws Throwable {
59
+ public void stringBuilderBodyConsumerTest () throws Throwable {
60
60
61
61
SimpleAsyncHttpClient client = new SimpleAsyncHttpClient .Builder ().setIdleConnectionInPoolTimeoutInMs (100 ).setMaximumConnectionsTotal (50 ).setRequestTimeoutInMs (5 * 60 * 1000 ).setUrl (getTargetUrl ()).setHeader ("Content-Type" , "text/html" ).build ();
62
62
try {
@@ -73,7 +73,7 @@ public void StringBuilderBodyConsumerTest() throws Throwable {
73
73
}
74
74
75
75
@ Test (groups = { "standalone" , "default_provider" })
76
- public void ByteArrayOutputStreamBodyConsumerTest () throws Throwable {
76
+ public void byteArrayOutputStreamBodyConsumerTest () throws Throwable {
77
77
78
78
SimpleAsyncHttpClient client = new SimpleAsyncHttpClient .Builder ().setIdleConnectionInPoolTimeoutInMs (100 ).setMaximumConnectionsTotal (50 ).setRequestTimeoutInMs (5 * 60 * 1000 ).setUrl (getTargetUrl ()).setHeader ("Content-Type" , "text/html" ).build ();
79
79
try {
@@ -90,7 +90,7 @@ public void ByteArrayOutputStreamBodyConsumerTest() throws Throwable {
90
90
}
91
91
92
92
@ Test (groups = { "standalone" , "default_provider" })
93
- public void RequestByteArrayOutputStreamBodyConsumerTest () throws Throwable {
93
+ public void requestByteArrayOutputStreamBodyConsumerTest () throws Throwable {
94
94
95
95
SimpleAsyncHttpClient client = new SimpleAsyncHttpClient .Builder ().setUrl (getTargetUrl ()).build ();
96
96
try {
0 commit comments