Examples of BuilderSWRLRule


Examples of org.semanticweb.owlapitools.builders.BuilderSWRLRule

    }

    @Test
    public void shouldBuildSWRLRule() {
        // given
        BuilderSWRLRule builder = new BuilderSWRLRule(df).withBody(v1)
                .withHead(v2);
        OWLObject expected = df.getSWRLRule(body, head);
        // when
        OWLObject built = builder.buildObject();
        // then
        assertEquals(expected, built);
    }
View Full Code Here

Examples of org.semanticweb.owlapitools.builders.BuilderSWRLRule

    @Test
    public void shouldBuildSWRLRule() {
        // given
        SWRLRule expected = df.getSWRLRule(body, head);
        BuilderSWRLRule builder = new BuilderSWRLRule(expected, df);
        // when
        OWLObject built = builder.buildObject();
        // then
        assertEquals(expected, built);
    }
View Full Code Here

Examples of org.semanticweb.owlapitools.builders.BuilderSWRLRule

    }

    @Test
    public void shouldBuildSWRLRule() throws OWLOntologyCreationException {
        // given
        BuilderSWRLRule builder = new BuilderSWRLRule(df).withBody(v1)
                .withHead(v2);
        OWLAxiom expected = df.getSWRLRule(body, head);
        OWLOntology o = m.createOntology();
        // when
        builder.applyChanges(o);
        // then
        assertTrue(o.containsAxiom(expected));
    }
View Full Code Here
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.