Package org.openrdf.sail.memory

Source Code of org.openrdf.sail.memory.MemInferencingTest

/*
* Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006.
*
* Licensed under the Aduna BSD-style license.
*/
package org.openrdf.sail.memory;

import junit.framework.Test;
import junit.framework.TestCase;

import org.openrdf.sail.InferencingTest;
import org.openrdf.sail.Sail;
import org.openrdf.sail.inferencer.fc.ForwardChainingRDFSInferencer;
import org.openrdf.store.StoreException;

public class MemInferencingTest extends TestCase {

  public static Test suite()
    throws StoreException
  {
    Sail sailStack = new ForwardChainingRDFSInferencer(new MemoryStore());
    return InferencingTest.suite(sailStack, MemInferencingTest.class.getName());
  }
}
TOP

Related Classes of org.openrdf.sail.memory.MemInferencingTest

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.