01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.sail.memory;
07:
08: import junit.framework.Test;
09: import junit.framework.TestCase;
10:
11: import org.openrdf.sail.InferencingTest;
12: import org.openrdf.sail.Sail;
13: import org.openrdf.sail.SailException;
14: import org.openrdf.sail.inferencer.fc.ForwardChainingRDFSInferencer;
15:
16: public class MemInferencingTest extends TestCase {
17:
18: public static Test suite() throws SailException {
19: Sail sailStack = new ForwardChainingRDFSInferencer(
20: new MemoryStore());
21: return InferencingTest.suite(sailStack);
22: }
23: }
|