Skip to content

Commit

Permalink
Test $Gson$Types equals method with TypeVariable when its generic dec…
Browse files Browse the repository at this point in the history
…laration is not a Class
  • Loading branch information
d-william committed Jan 22, 2024
1 parent 1096f78 commit 4b9b2eb
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions gson/src/test/java/com/google/gson/internal/GsonTypesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.assertThrows;

import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.List;
Expand Down Expand Up @@ -98,4 +100,37 @@ public static Type getFirstTypeArgument(Type type) throws Exception {
}
return $Gson$Types.canonicalize(actualTypeArguments[0]);
}

@Test
public void testEqualsOnMethodTypeVariables() throws Exception {
Method m1 = TypeVariableTest.class.getMethod("method");
Method m2 = TypeVariableTest.class.getMethod("method");

Type rt1 = m1.getGenericReturnType();
Type rt2 = m2.getGenericReturnType();

assertThat($Gson$Types.equals(rt1, rt2)).isTrue();
}

@Test
public void testEqualsOnConstructorParameterTypeVariables() throws Exception {
Constructor<TypeVariableTest> c1 = TypeVariableTest.class.getConstructor(Object.class);
Constructor<TypeVariableTest> c2 = TypeVariableTest.class.getConstructor(Object.class);

Type rt1 = c1.getGenericParameterTypes()[0];
Type rt2 = c2.getGenericParameterTypes()[0];

assertThat($Gson$Types.equals(rt1, rt2)).isTrue();
}

private static final class TypeVariableTest {

public <T> TypeVariableTest(T parameter) {}

public <T> T method() {
return null;
}

}

}

0 comments on commit 4b9b2eb

Please sign in to comment.