hugegraph-test/src/main/java/org/apache/hugegraph/api/traversers/ResourceAllocationAPITest.java [44:55]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void testGet() {
        Map<String, String> name2Ids = listAllVertexName2Ids();

        String markoId = name2Ids.get("marko");
        String joshId = name2Ids.get("josh");
        Response r = client().get(PATH, ImmutableMap.of("vertex",
                                                        id2Json(markoId),
                                                        "other",
                                                        id2Json(joshId)));
        String content = assertResponseStatus(200, r);
        assertJsonContains(content, "resource_allocation");
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



hugegraph-test/src/main/java/org/apache/hugegraph/api/traversers/AdamicAdarAPITest.java [44:55]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void testGet() {
        Map<String, String> name2Ids = listAllVertexName2Ids();

        String markoId = name2Ids.get("marko");
        String joshId = name2Ids.get("josh");
        Response r = client().get(PATH, ImmutableMap.of("vertex",
                                                        id2Json(markoId),
                                                        "other",
                                                        id2Json(joshId)));
        String content = assertResponseStatus(200, r);
        assertJsonContains(content, "adamic_adar");
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



