Package org.apache.clerezza.rdf.core.sparql.query.impl

Examples of org.apache.clerezza.rdf.core.sparql.query.impl.SimpleDescribeQuery


  @Test
  public void testDescribeQuery() {

    final String queryString = "DESCRIBE <http://example.org/book/book1>";

    SimpleDescribeQuery describeQuery = new SimpleDescribeQuery();
    describeQuery.addResourceToDescribe(new ResourceOrVariable(
        new UriRef("http://example.org/book/book1")));

    Assert.assertTrue(describeQuery.toString()
        .replaceAll("( |\n)+", " ").trim().equals(queryString));
  }
View Full Code Here


    @Test
    public void testDescribeQuery() {

        final String queryString = "DESCRIBE <http://example.org/book/book1>";

        SimpleDescribeQuery describeQuery = new SimpleDescribeQuery();
        describeQuery.addResourceToDescribe(new ResourceOrVariable(
                new UriRef("http://example.org/book/book1")));

        Assert.assertTrue(describeQuery.toString()
                .replaceAll("( |\n)+", " ").trim().equals(queryString));
    }
View Full Code Here

TOP

Related Classes of org.apache.clerezza.rdf.core.sparql.query.impl.SimpleDescribeQuery

Copyright © 2018 www.massapicom. 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.