Searched refs:assertNoTypeVariable (Results 1 – 1 of 1) sorted by relevance
1350 assertNoTypeVariable(String.class); in testRejectTypeVariable_class()1351 assertNoTypeVariable(String[].class); in testRejectTypeVariable_class()1352 assertNoTypeVariable(int[].class); in testRejectTypeVariable_class()1356 assertNoTypeVariable(new TypeCapture<Iterable<String>>() {}.capture()); in testRejectTypeVariable_parameterizedType()1360 assertNoTypeVariable( in testRejectTypeVariable_wildcardType()1362 assertNoTypeVariable( in testRejectTypeVariable_wildcardType()1367 assertNoTypeVariable( in testRejectTypeVariable_genericArrayType()1401 assertNoTypeVariable(new From<Integer>().new To<String>() {}.type()); in testRejectTypeVariable_withOwnerType()1407 assertNoTypeVariable(new From<Integer>() {}.new To<String>() {}.type()); in testRejectTypeVariable_withOwnerType()1418 private static void assertNoTypeVariable(Type type) { in assertNoTypeVariable() method in TypeTokenTest