javeme commented on code in PR #194: URL: https://github.com/apache/incubator-hugegraph-computer/pull/194#discussion_r1029284813
########## computer-test/src/main/java/com/baidu/hugegraph/computer/suite/unit/UnitTestBase.java: ########## @@ -63,16 +69,76 @@ public class UnitTestBase { "0123456789" + "abcdefghijklmnopqrstuvxyz"; - private static final String URL = ComputerOptions.HUGEGRAPH_URL - .defaultValue(); - private static final String GRAPH = ComputerOptions.HUGEGRAPH_GRAPH_NAME - .defaultValue(); + private static String URL; + private static String GRAPH; private static HugeClient CLIENT = null; protected static void clearAll() { client().graphs().clearGraph(GRAPH, "I'm sure to delete all data"); } + @BeforeClass + public static void step() throws ClassNotFoundException { Review Comment: step() => setup()? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@hugegraph.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org