Package com.hp.hpl.jena.eyeball.web

Examples of com.hp.hpl.jena.eyeball.web.WebEyeballer


         Test of gather method, of class
         com.hp.hpl.jena.eyeball.web.statistics.ConfigStatistician.
     */
    @Test public void testGatherConfig()
        {
        WebEyeballer e = new WebEyeballer();
        e.setAssumes( "[owl]" );
        e.setInspectors( "[cardinality,uri,allTyped]" );
        e.setReportFormat( "N3" );
        e.setCollectStatistics( false );
        runStatisticianTest( e, new ConfigStatistician(), "config" );
        }
View Full Code Here


    /**
     * Test of gather method, of class com.hp.hpl.jena.eyeball.web.statistics.ConfigStatistician.
     */
    @Test public void testGatherMetaData() {
        WebEyeballer e = new WebEyeballer();
        e.setReportFormat( "N3" );
        e.setCollectStatistics( false );
        runStatisticianContainsPredicatesTest( e, new MetaDataStatistician(), "metadata" );
    }
View Full Code Here

    static
        { IRIResolver.suppressExceptions(); }

    @Test public void testGatherEyeballingStatistics()
        {
        WebEyeballer e = new WebEyeballer();
        e.setRepairFuncs( "repair" );
        e.setAssumes( "[owl]" );
        e.setInspectors( "[allTyped,cardinality,uri,literal,prefix,class,consistentType,property,vocabulary]" );
        e.setReportFormat( "N3" );
        e.setCollectStatistics( false );
        if (false) runStatisticianTest( e, new EyeballingStatistician(), "eyeballing" );
        }
View Full Code Here

    public ModelStatisticianTest()
        {}
   
    @Test public void testGatherModelStatistics()
        {
        WebEyeballer e = new WebEyeballer();
        e.setReportFormat( "N3" );
        e.setModelType( "N3" );
        e.setCollectStatistics( false );
        runStatisticianTest( e, new ModelStatistician(), "model" );
        }
View Full Code Here

TOP

Related Classes of com.hp.hpl.jena.eyeball.web.WebEyeballer

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.