Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isPrimitiveOrNullable (0.83 sec)

  1. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

         * Android VMs and in open-source guava-android. So we skip testing there.
         */
        if (Reflection.getPackageName(testedClass).startsWith("com.google.common")) {
          return;
        }
        if (isPrimitiveOrNullable(invokable.getParameters().get(paramIndex))) {
          return; // there's nothing to test
        }
        @Nullable Object[] params = buildParamList(invokable, paramIndex);
        try {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        for (Method method : nullPointerTester.getInstanceMethodsToTest(c, visibility)) {
          for (Parameter param : Invokable.from(method).getParameters()) {
            if (!NullPointerTester.isPrimitiveOrNullable(param)) {
              return true;
            }
          }
        }
        return false;
      }
    
      /**
       * Tests the {@link Object#equals} and {@link Object#hashCode} of {@code cls}. In details:
       *
    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. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        for (Method method : nullPointerTester.getInstanceMethodsToTest(c, visibility)) {
          for (Parameter param : Invokable.from(method).getParameters()) {
            if (!NullPointerTester.isPrimitiveOrNullable(param)) {
              return true;
            }
          }
        }
        return false;
      }
    
      /**
       * Tests the {@link Object#equals} and {@link Object#hashCode} of {@code cls}. In details:
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
Back to top