Examples of BuilderDisjointUnion


Examples of org.semanticweb.owlapitools.builders.BuilderDisjointUnion

    }

    @Test
    public void shouldBuildDisjointUnion() {
        // given
        BuilderDisjointUnion builder = new BuilderDisjointUnion(df)
                .withClass(ce).withItems(classes).withAnnotations(annotations);
        OWLObject expected = df.getOWLDisjointUnionAxiom(ce, classes,
                annotations);
        // when
        OWLObject built = builder.buildObject();
        // then
        assertEquals(expected, built);
    }
View Full Code Here

Examples of org.semanticweb.owlapitools.builders.BuilderDisjointUnion

    @Test
    public void shouldBuildDisjointUnion() {
        // given
        OWLDisjointUnionAxiom expected = df.getOWLDisjointUnionAxiom(ce,
                classes, annotations);
        BuilderDisjointUnion builder = new BuilderDisjointUnion(expected, df);
        // when
        OWLObject built = builder.buildObject();
        // then
        assertEquals(expected, built);
    }
View Full Code Here

Examples of org.semanticweb.owlapitools.builders.BuilderDisjointUnion

    }

    @Test
    public void shouldBuildDisjointUnion() throws OWLOntologyCreationException {
        // given
        BuilderDisjointUnion builder = new BuilderDisjointUnion(df)
                .withClass(ce).withItems(classes).withAnnotations(annotations);
        OWLAxiom expected = df.getOWLDisjointUnionAxiom(ce, classes,
                annotations);
        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.