Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testEqualsReflexive (0.31 seconds)

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

  1. guava-tests/test/com/google/common/collect/ForwardingObjectTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests for {@code ForwardingObject}.
     *
     * @author Mike Bostock
     */
    @NullUnmarked
    public class ForwardingObjectTest extends TestCase {
    
      public void testEqualsReflexive() {
        Object delegate = new Object();
        ForwardingObject forward =
            new ForwardingObject() {
              @Override
              protected Object delegate() {
                return delegate;
              }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 1.6K bytes
    - Click Count (0)
Back to Top