Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testForUriStringBad (0.11 sec)

  1. guava-tests/test/com/google/common/net/InetAddressesTest.java

        assertFalse(InetAddresses.isUriInetAddress("3ffe:0:0:0:0:0:0:1"));
        assertFalse(InetAddresses.isUriInetAddress("::ffff:192.0.2.1"));
      }
    
      public void testForUriStringBad() {
        assertThrows(IllegalArgumentException.class, () -> InetAddresses.forUriString(""));
    
        assertThrows(
            IllegalArgumentException.class, () -> InetAddresses.forUriString("192.168.999.888"));
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top