Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for builderNameValidation (0.36 sec)

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

        assertThat(cookie.httpOnly).isFalse()
        // can't be unset
        assertThat(cookie.persistent).isTrue()
        assertThat(cookie.hostOnly).isFalse()
      }
    
      @Test fun builderNameValidation() {
        assertFailsWith<IllegalArgumentException> {
          Cookie.Builder().name(" a ")
        }
      }
    
      @Test fun builderValueValidation() {
        assertFailsWith<IllegalArgumentException> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top