Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testGetClass (0.47 sec)

  1. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(StringList.class.getGenericInterfaces()[0], token.getType());
      }
    
      @SuppressWarnings("rawtypes") // Trying to test TypeToken.of(List.class)
      public void testGetClass() {
        TypeToken<List> token = TypeToken.of(List.class);
        assertEquals(new TypeToken<List>() {}, token);
      }
    
      public void testGetType() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(StringList.class.getGenericInterfaces()[0], token.getType());
      }
    
      @SuppressWarnings("rawtypes") // Trying to test TypeToken.of(List.class)
      public void testGetClass() {
        TypeToken<List> token = TypeToken.of(List.class);
        assertEquals(new TypeToken<List>() {}, token);
      }
    
      public void testGetType() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top