001: /*****************************************************************************
002: * Source code information
003: * -----------------------
004: * Original author Ian Dickinson, HP Labs Bristol
005: * Author email Ian.Dickinson@hp.com
006: * Package Jena 2
007: * Web http://sourceforge.net/projects/jena/
008: * Created 01-Apr-2003
009: * Filename $RCSfile: TestAxioms.java,v $
010: * Revision $Revision: 1.10 $
011: * Release status $State: Exp $
012: *
013: * Last modified on $Date: 2008/01/02 12:08:41 $
014: * by $Author: andy_seaborne $
015: *
016: * (c) Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
017: * (see footer for full conditions)
018: *****************************************************************************/package com.hp.hpl.jena.ontology.impl.test;
019:
020: // Imports
021: ///////////////
022: import junit.framework.TestSuite;
023:
024: /**
025: * <p>
026: * Unit tests for all different declaration
027: * </p>
028: *
029: * @author Ian Dickinson, HP Labs
030: * (<a href="mailto:Ian.Dickinson@hp.com" >email</a>)
031: * @version CVS $Id: TestAxioms.java,v 1.10 2008/01/02 12:08:41 andy_seaborne Exp $
032: */
033: public class TestAxioms extends OntTestBase {
034: // Constants
035: //////////////////////////////////
036:
037: // Static variables
038: //////////////////////////////////
039:
040: // Instance variables
041: //////////////////////////////////
042:
043: // Constructors
044: //////////////////////////////////
045:
046: public TestAxioms(String s) {
047: super (s);
048: }
049:
050: // External signature methods
051: //////////////////////////////////
052:
053: protected String getTestName() {
054: return "TestAxioms";
055: }
056:
057: public static TestSuite suite() {
058: return new TestAxioms("TestAxioms");
059: }
060:
061: public OntTestCase[] getTests() {
062: return new OntTestCase[] {};
063: }
064:
065: // Internal implementation methods
066: //////////////////////////////////
067:
068: //==============================================================================
069: // Inner class definitions
070: //==============================================================================
071:
072: }
073:
074: /*
075: (c) Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
076: All rights reserved.
077:
078: Redistribution and use in source and binary forms, with or without
079: modification, are permitted provided that the following conditions
080: are met:
081:
082: 1. Redistributions of source code must retain the above copyright
083: notice, this list of conditions and the following disclaimer.
084:
085: 2. Redistributions in binary form must reproduce the above copyright
086: notice, this list of conditions and the following disclaimer in the
087: documentation and/or other materials provided with the distribution.
088:
089: 3. The name of the author may not be used to endorse or promote products
090: derived from this software without specific prior written permission.
091:
092: THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
093: IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
094: OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
095: IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
096: INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
097: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
098: DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
099: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
100: (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
101: THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
102: */
|