Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Jdk8WithJettyBootPlatformTest (0.29 sec)

  1. okhttp/src/test/java/okhttp3/internal/platform/Jdk8WithJettyBootPlatformTest.kt

    import org.junit.jupiter.api.Assumptions.assumeFalse
    import org.junit.jupiter.api.Assumptions.assumeTrue
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    class Jdk8WithJettyBootPlatformTest {
      @RegisterExtension
      val platform = PlatformRule()
    
      @Test
      fun testBuildsWithJettyBoot() {
        assumeTrue(System.getProperty("java.specification.version") == "1.8")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. native-image-tests/src/main/kotlin/okhttp3/GenerateClassList.kt

    // TODO move to junit5 tags
    val avoidedTests =
      setOf(
        "okhttp3.BouncyCastleTest",
        "okhttp3.ConscryptTest",
        "okhttp3.CorrettoTest",
        "okhttp3.OpenJSSETest",
        "okhttp3.internal.platform.Jdk8WithJettyBootPlatformTest",
        "okhttp3.internal.platform.Jdk9PlatformTest",
        "okhttp3.internal.platform.PlatformTest",
        "okhttp3.internal.platform.android.AndroidSocketAdapterTest",
        "okhttp3.osgi.OsgiTest",
        // Hanging.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top