yangxk1 commented on code in PR #739: URL: https://github.com/apache/incubator-graphar/pull/739#discussion_r2340508158
########## maven-projects/info/src/test/java/org/apache/graphar/info/GraphSaverTest.java: ########## @@ -19,36 +19,64 @@ package org.apache.graphar.info; -import java.io.File; import org.apache.graphar.info.saver.GraphSaver; import org.apache.graphar.info.saver.LocalYamlGraphSaver; -import org.junit.Assert; +import org.junit.After; +import org.junit.Before; import org.junit.Test; -public class GraphSaverTest { +public class GraphSaverTest extends BaseFileSystemTest { + + private String testSaveDirectory; + private GraphSaver graphSaver; + private GraphInfo testGraphInfo; + + @Before + public void setUp() { + verifyTestPrerequisites(); + testSaveDirectory = createCleanTestDirectory("ldbc_sample"); + graphSaver = new LocalYamlGraphSaver(); + testGraphInfo = TestDataFactory.createSampleGraphInfo(); + } + + @After + public void tearDown() { Review Comment: This name may be unclear about its role -- 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: commits-unsubscr...@graphar.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@graphar.apache.org For additional commands, e-mail: commits-h...@graphar.apache.org