Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. okhttp/src/test/java/okhttp3/HeadersTest.kt

      }
    
      @Test fun ofMapRejectsNullCharInName() {
        assertFailsWith<IllegalArgumentException> {
          mapOf("User-\u0000Agent" to "OkHttp").toHeaders()
        }
      }
    
      @Test fun ofMapRejectsNullCharInValue() {
        assertFailsWith<IllegalArgumentException> {
          mapOf("User-Agent" to "Square\u0000OkHttp").toHeaders()
        }
      }
    
      @Test fun builderRejectsUnicodeInHeaderName() {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top