Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for untested (0.05 sec)

  1. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

      }
    
      private abstract static class DefaultValueChecker {
    
        private final Map<Integer, Object> arguments = new HashMap<>();
    
        @CanIgnoreReturnValue
        final DefaultValueChecker runTester() {
          new NullPointerTester().testInstanceMethods(this, Visibility.PACKAGE);
          return this;
        }
    
        final void assertNonNullValues(Object... expectedValues) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 47.7K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

     * public class Books {
     *   public static Book hardcover(String title) {...}
     *   public static Book paperback(String title) {...}
     * }
     * </pre>
     *
     * <p>And all the created {@code Book} instances can be tested with:
     *
     * <pre>
     * new ClassSanityTester()
     *     .forAllPublicStaticMethods(Books.class)
     *     .thatReturn(Book.class)
     *     .testEquals(); // or testNulls(), testSerializable() etc.
     * </pre>
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/EventListener.kt

       *    true.
       *
       * It won't retry if the exception is a bug or a configuration problem, such as:
       *
       *  * If the remote peer is untrusted: [exception] is an [SSLPeerUnverifiedException].
       *  * If received data is unexpected: [exception] is a [ProtocolException].
       *
       * Each call is made on either a reused [Connection] from a pool, or on a new connection
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/script/ScriptEngineTest.java

        }
    
        // Test evaluate method with nested expressions
        public void test_evaluate_withNestedExpressions() {
            String template = "${level1.level2.value}";
            Map<String, Object> paramMap = new HashMap<>();
            Map<String, Object> level2 = new HashMap<>();
            level2.put("value", "nested");
            Map<String, Object> level1 = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/InsecureForHostTest.kt

      private val server = MockWebServer()
    
      @BeforeEach
      fun setup() {
        // BCX509ExtendedTrustManager not supported in TlsUtil.newTrustManager
        platform.assumeNotBouncyCastle()
      }
    
      @Test fun `untrusted host in insecureHosts connects successfully`() {
        val serverCertificates = platform.localhostHandshakeCertificates()
        server.useHttps(serverCertificates.sslSocketFactory())
        server.enqueue(MockResponse())
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

        }
    
        public void test_complexDocumentStructure() {
            // Test with complex nested document structure
            Map<String, Object> doc = new HashMap<>();
            doc.put("id", "complex");
    
            Map<String, Object> nested = new HashMap<>();
            nested.put("level2", "value");
            doc.put("nested", nested);
    
            List<String> list = new ArrayList<>();
            list.add("item1");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

     * public class Books {
     *   public static Book hardcover(String title) {...}
     *   public static Book paperback(String title) {...}
     * }
     * </pre>
     *
     * <p>And all the created {@code Book} instances can be tested with:
     *
     * <pre>
     * new ClassSanityTester()
     *     .forAllPublicStaticMethods(Books.class)
     *     .thatReturn(Book.class)
     *     .testEquals(); // or testNulls(), testSerializable() etc.
     * </pre>
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/score/QueryRescorerTest.java

                        return null;
                    }
    
                    // Check for nested map
                    if (params.containsKey("nested") && params.get("nested") instanceof Map) {
                        @SuppressWarnings("unchecked")
                        Map<String, Object> nestedMap = (Map<String, Object>) params.get("nested");
                        if (nestedMap.containsKey("innerKey")) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

            }
        }
    
        public void test_execute_withNestedBoostQuery() {
            // Test executing BoostQuery with another BoostQuery inside (nested boost)
            Term term = new Term("field", "nested");
            TermQuery termQuery = new TermQuery(term);
            BoostQuery innerBoostQuery = new BoostQuery(termQuery, 2.0f);
            BoostQuery outerBoostQuery = new BoostQuery(innerBoostQuery, 3.0f);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java

            Map<String, Object> source = new HashMap<>();
            source.put("TestKey", "value1");
            source.put("AnotherTestKey", "value2");
    
            Map<String, Object> nested = new HashMap<>();
            nested.put("NestedKey", "nestedValue");
            source.put("NestedMap", nested);
    
            Map<String, Object> result = searchLogHelper.toLowerHyphen(source);
    
            assertEquals("value1", result.get("test_key"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top