Make the test quieter.
This commit is contained in:
parent
43b6d8d5f2
commit
f4186c3657
1 changed files with 9 additions and 1 deletions
|
@ -4,6 +4,8 @@ package edu.cornell.mannlib.vitro.webapp.reasoner;
|
|||
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.mindswap.pellet.jena.PelletReasonerFactory;
|
||||
|
||||
|
@ -17,10 +19,16 @@ import com.hp.hpl.jena.rdf.model.ResourceFactory;
|
|||
import com.hp.hpl.jena.rdf.model.Statement;
|
||||
import com.hp.hpl.jena.vocabulary.RDF;
|
||||
|
||||
import edu.cornell.mannlib.vitro.testing.AbstractTestClass;
|
||||
import edu.cornell.mannlib.vitro.webapp.reasoner.support.SimpleReasonerTBoxListener;
|
||||
|
||||
|
||||
public class SimpleReasonerTest {
|
||||
public class SimpleReasonerTest extends AbstractTestClass {
|
||||
|
||||
@Before
|
||||
public void suppressErrorOutput() {
|
||||
suppressSyserr();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void addTypes(){
|
||||
|
|
Loading…
Add table
Reference in a new issue