Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testGetTesterAnnotations_class (0.16 sec)

  1. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

        assertThat(requirements.getPresentFeatures()).containsExactly(IMPLIES_BAR, BAR);
        assertThat(requirements.getAbsentFeatures()).isEmpty();
      }
    
      public void testGetTesterAnnotations_class() {
        @Require
        @NotTesterAnnotation
        class Tester {}
    
        assertThat(getTesterAnnotations(Tester.class))
            .containsExactly(Tester.class.getAnnotation(Require.class));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 11.6K bytes
    - Viewed (0)
Back to top