Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addThrowsOnMultiColon (0.07 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/HeadersJvmTest.kt

        }
      }
    
      @Test fun addThrowsOnNoColon() {
        assertFailsWith<IllegalArgumentException> {
          Headers.Builder().add("foo bar")
        }
      }
    
      @Test fun addThrowsOnMultiColon() {
        assertFailsWith<IllegalArgumentException> {
          Headers.Builder().add(":status: 200 OK")
        }
      }
    
      @Test fun addUnsafeNonAsciiRejectsUnicodeName() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:51:25 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top