Examples of BuilderSWRLDataPropertyAtom


Examples of org.semanticweb.owlapitools.builders.BuilderSWRLDataPropertyAtom

    }

    @Test
    public void shouldBuildSWRLDataPropertyAtom() {
        // given
        BuilderSWRLDataPropertyAtom builder = new BuilderSWRLDataPropertyAtom(
                df).withProperty(dp).with(var2).with(var1);
        OWLObject expected = df.getSWRLDataPropertyAtom(dp, var2, var1);
        // when
        OWLObject built = builder.buildObject();
        // then
        assertEquals(expected, built);
    }
View Full Code Here

Examples of org.semanticweb.owlapitools.builders.BuilderSWRLDataPropertyAtom

    @Test
    public void shouldBuildSWRLDataPropertyAtom() {
        // given
        SWRLDataPropertyAtom expected = df.getSWRLDataPropertyAtom(dp, var2,
                var1);
        BuilderSWRLDataPropertyAtom builder = new BuilderSWRLDataPropertyAtom(
                expected, df);
        // when
        OWLObject built = builder.buildObject();
        // then
        assertEquals(expected, built);
    }
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.