Searched defs:checkFromStringCase (Results 1 - 1 of 1) sorted by relevance

/external/guava/guava-tests/test/com/google/common/net/
H A DHostAndPortTest.java34 checkFromStringCase("google.com", 80, "google.com", 80, false);
35 checkFromStringCase("google.com", 80, "google.com", 80, false);
36 checkFromStringCase("192.0.2.1", 82, "192.0.2.1", 82, false);
37 checkFromStringCase("[2001::1]", 84, "2001::1", 84, false);
38 checkFromStringCase("2001::3", 86, "2001::3", 86, false);
39 checkFromStringCase("host:", 80, "host", 80, false);
44 checkFromStringCase("gmail.com:81", -1, "gmail.com", 81, true);
45 checkFromStringCase("192.0.2.2:83", -1, "192.0.2.2", 83, true);
46 checkFromStringCase("[2001::2]:85", -1, "2001::2", 85, true);
47 checkFromStringCase("go
95 private static void checkFromStringCase( method in class:HostAndPortTest
[all...]

Completed in 196 milliseconds