Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testGetTesterAnnotations_class (0.2 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 05 22:05:05 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 05 22:05:05 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top