Package journal.io.issues

Source Code of journal.io.issues.Issue55Test

package journal.io.issues;

import java.io.File;
import java.io.IOException;
import journal.io.api.Journal;
import org.junit.Test;

public class Issue55Test {

    private static final File ISSUE55_DIR = new File(Issue55Test.class.getClassLoader().getResource("issue55").getFile());

    @Test
    public void test() throws IOException {
        Journal journal = new Journal();
        journal.setDirectory(ISSUE55_DIR);
        journal.open();
        journal.close();
    }
}
TOP

Related Classes of journal.io.issues.Issue55Test

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.