Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Item4 (0.2 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/TypeInspectorTestHelper.java

    import java.util.Map;
    import java.util.Set;
    
    public class TypeInspectorTestHelper {
        interface Item1 {
        }
    
        interface Item2 {
        }
    
        interface Item3 {
        }
    
        interface Item4 {
        }
    
        interface Item5 {
        }
    
        interface SuperThing {
            Runnable method1();
    
            List<Item1> method2();
    
            Map<Set<Item2>, String> method3();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/TypeInspectorTest.groovy

        def "inspects type and caches result"() {
            expect:
            def types = inspector.getReachableTypes(Thing)
            types == [Thing, SuperThing, GenericThing, Item1, Item2, Item3, Item4, Item5, Runnable, List, Map, Set] as Set
    
            def types2 = inspector.getReachableTypes(Thing)
            types2.is(types)
        }
    
        def "inspects cyclic types"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top