Package org.neo4j.community.console

Source Code of org.neo4j.community.console.ConsoleTest

package org.neo4j.community.console;

import org.junit.Ignore;
import org.neo4j.test.TestGraphDatabaseFactory;

/**
* @author mh
* @since 05.06.12
*/
@Ignore
public class ConsoleTest {
    public static void main(String[] args) throws Exception {
        final Console console = new Console(DatabaseInfo.expose(new TestGraphDatabaseFactory().newImpermanentDatabase()));
        console.start(9000);
        console.join();
    }
}
TOP

Related Classes of org.neo4j.community.console.ConsoleTest

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.