Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testConstructorLenient_classObject (0.16 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava-tests/test/com/google/common/base/ToStringHelperTest.java

      public void testConstructor_classObject() {
        String toTest = MoreObjects.toStringHelper(TestClass.class).toString();
        assertEquals("TestClass{}", toTest);
      }
    
      public void testConstructorLenient_classObject() {
        String toTest = MoreObjects.toStringHelper(TestClass.class).toString();
        assertTrue(toTest, toTest.matches(".*\\{\\}"));
      }
    
      public void testConstructor_stringObject() {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 21.4K bytes
    - Click Count (0)
Back to Top