Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for getPackageName (0.18 sec)

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

          // a file.
          String visiblePackage = Reflection.getPackageName(cls);
          ImmutableList.Builder<Method> builder = ImmutableList.builder();
          for (Class<?> type : TypeToken.of(cls).getTypes().rawTypes()) {
            if (!Reflection.getPackageName(type).equals(visiblePackage)) {
              break;
            }
            for (Method method : type.getDeclaredMethods()) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 22.8K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

          this.declaringClass = declaringClass;
          this.factories = factories;
          this.factoryMethodsDescription = factoryMethodsDescription;
          packagesToTest.add(Reflection.getPackageName(declaringClass));
        }
    
        /**
         * Specifies that only the methods that are declared to return {@code returnType} or its subtype
         * are tested.
         *
         * @return this tester object
         */
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 08 17:31:55 GMT 2024
    - 33K bytes
    - Viewed (0)
Back to top