Remove public modifiers from junit5 test methods.
parent
5196a56ccf
commit
9ab342c3a7
|
@ -15,12 +15,12 @@ import org.junit.jupiter.api.Test;
|
||||||
* @author yxssfxwzy@sina.com May 30, 2014
|
* @author yxssfxwzy@sina.com May 30, 2014
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class ProxyTest {
|
class ProxyTest {
|
||||||
|
|
||||||
private static List<String[]> httpProxyList = new ArrayList<String[]>();
|
private static List<String[]> httpProxyList = new ArrayList<String[]>();
|
||||||
|
|
||||||
@BeforeAll
|
@BeforeAll
|
||||||
public static void before() {
|
static void before() {
|
||||||
// String[] source = { "0.0.0.1:0", "0.0.0.2:0", "0.0.0.3:0",
|
// String[] source = { "0.0.0.1:0", "0.0.0.2:0", "0.0.0.3:0",
|
||||||
// "0.0.0.4:0" };
|
// "0.0.0.4:0" };
|
||||||
String[] source = { "::0.0.0.1:0", "::0.0.0.2:0", "::0.0.0.3:0", "::0.0.0.4:0" };
|
String[] source = { "::0.0.0.1:0", "::0.0.0.2:0", "::0.0.0.3:0", "::0.0.0.4:0" };
|
||||||
|
|
Loading…
Reference in New Issue