Package com.tinkerpop.blueprints.oupls.sail

Source Code of com.tinkerpop.blueprints.oupls.sail.MemoryStoreTest

package com.tinkerpop.blueprints.oupls.sail;

import org.openrdf.sail.Sail;
import org.openrdf.sail.memory.MemoryStore;

/**
* @author Joshua Shinavier (http://fortytwo.net)
*/
public class MemoryStoreTest extends SailTest {
    @Override
    protected void before() throws Exception {
        // Nothing to do.
    }

    @Override
    protected void after() throws Exception {
        // Nothing to do.
    }

    @Override
    protected Sail createSail() throws Exception {
        return new MemoryStore();
    }
}
TOP

Related Classes of com.tinkerpop.blueprints.oupls.sail.MemoryStoreTest

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.