prickett    2002/10/21 19:56:26

  Modified:    
periodicity/src/plugins-build/database/src/java/org/apache/commons/periodicity/database
                        DatabaseMetaDataImpl.java
               
periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database
                        DriverMDGetContextTest.java
                        DriverMDGetNameTest.java
  Added:       
periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database
                        DatabaseMDGetNameTest.java
                        DatabaseMDGetTypeTest.java
                        DatabaseMDNameNullTest.java
                        DatabaseMDNameTypeNullTest.java
                        DatabaseMDTypeNullTest.java
                        DriverMDContextNameNullTest.java
  Log:
  Changed DB_NAME to DRIVER_NAME in DriverMDGetNameTest.java and
  DriverMDGetContextTest.java.
  
  Added a test to test the getName method in the Database Meta Data
  Implementation.
  
  Added a test to test the getType method in the Database Meta Data
  Implementation.
  
  Added a test to test a null name field in the Database Meta Data
  Implementation.
  
  Added a test to test a null type field in the Database Meta Data
  Implementation.
  
  Added a test to test a null type and a null name field in the Database Meta
  Data Implementation.
  
  Added a test to test a null context and a null name field in the Database
  Meta Data Implementation.
  
  Revision  Changes    Path
  1.4       +3 -5      
jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/java/org/apache/commons/periodicity/database/DatabaseMetaDataImpl.java
  
  Index: DatabaseMetaDataImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/java/org/apache/commons/periodicity/database/DatabaseMetaDataImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DatabaseMetaDataImpl.java 21 Oct 2002 03:57:12 -0000      1.3
  +++ DatabaseMetaDataImpl.java 22 Oct 2002 02:56:25 -0000      1.4
  @@ -64,8 +64,6 @@
   
   
   
  -
  -
   public class DatabaseMetaDataImpl implements DatabaseMetaData
   {
       /** A variable to hold the name of the database */
  
  
  
  1.2       +4 -4      
jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DriverMDGetContextTest.java
  
  Index: DriverMDGetContextTest.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DriverMDGetContextTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DriverMDGetContextTest.java       22 Oct 2002 01:01:14 -0000      1.1
  +++ DriverMDGetContextTest.java       22 Oct 2002 02:56:25 -0000      1.2
  @@ -68,7 +68,7 @@
   public class DriverMDGetContextTest extends TestCase
   {
   
  -    private static final String DB_NAME = "database.driver";
  +    private static final String DRIVER_NAME = "database.driver";
   
       public DriverMDGetContextTest(String name)
       {
  @@ -81,7 +81,7 @@
           {
               VelocityContext context = new VelocityContext();
               DriverMetaDataImpl driverMD = new DriverMetaDataImpl(
  -                   DB_NAME, context);
  +                   DRIVER_NAME, context);
               assertEquals(
                      "The velocity contexts are not equal.",
                      context, driverMD.getVelocityContext());
  
  
  
  1.2       +6 -6      
jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DriverMDGetNameTest.java
  
  Index: DriverMDGetNameTest.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DriverMDGetNameTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DriverMDGetNameTest.java  22 Oct 2002 01:01:14 -0000      1.1
  +++ DriverMDGetNameTest.java  22 Oct 2002 02:56:25 -0000      1.2
  @@ -68,7 +68,7 @@
   public class DriverMDGetNameTest extends TestCase
   {
   
  -    private static final String DB_NAME = "database.driver";
  +    private static final String DRIVER_NAME = "database.driver";
   
       public DriverMDGetNameTest(String name)
       {
  @@ -81,11 +81,11 @@
           {
               VelocityContext context = new VelocityContext();
               DriverMetaDataImpl driverMD = new DriverMetaDataImpl(
  -                   DB_NAME, context);
  +                   DRIVER_NAME, context);
               assertEquals(
  -                   "Expected getName() to return \"" + DB_NAME +
  +                   "Expected getName() to return \"" + DRIVER_NAME +
                      "\" it returned \"" + driverMD.getName() + "\".",
  -                   DB_NAME, driverMD.getName());
  +                   DRIVER_NAME, driverMD.getName());
                     
           }
           catch(Exception e)
  
  
  
  1.1                  
jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DatabaseMDGetNameTest.java
  
  Index: DatabaseMDGetNameTest.java
  ===================================================================
  package org.apache.commons.periodicity.database;
  
  /*
   * $Header: 
/home/cvs/jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DatabaseMDGetNameTest.java,v
 1.1 2002/10/22 02:56:25 prickett Exp $
   * $Revision: 1.1 $
   * $Date: 2002/10/22 02:56:25 $
   *
   * ====================================================================
   * 
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999-2001 The Apache Software Foundation.  All rights 
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer. 
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution, if
   *    any, must include the following acknowlegement:  
   *       "This product includes software developed by the 
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Commons", and "Apache Software
   *    Foundation" must not be used to endorse or promote products derived
   *    from this software without prior written permission. For written 
   *    permission, please contact [EMAIL PROTECTED]
   *
   * 5. Products derived from this software may not be called "Apache"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   *
   */ 
  
  
  import junit.framework.TestCase;
  
  public class DatabaseMDGetNameTest extends TestCase 
  {
  
      private static final String DB_NAME = "periodicity.vevent";
      private static final String DB_TYPE = "acme_database";
  
      public DatabaseMDGetNameTest(String name)
      {
          super(name);
      }
  
      protected void runTest()
      {
          try
          {
              DatabaseMetaDataImpl dbmeta = 
                     new DatabaseMetaDataImpl(DB_NAME, DB_TYPE);
              assertEquals(
                     "Database name is incorrect. EXPECTED=\"" + 
                     DB_NAME + "\" - ACTUAL=\"" + dbmeta.getName() + "\".",
                     DB_NAME, dbmeta.getName());
          }
          catch(Exception e)
          {
              fail("UNEXPECTED EXCEPTION - \"" + e + "\"");
          }
      }
  
  }    
  
  
  
  1.1                  
jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DatabaseMDGetTypeTest.java
  
  Index: DatabaseMDGetTypeTest.java
  ===================================================================
  package org.apache.commons.periodicity.database;
  
  /*
   * $Header: 
/home/cvs/jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DatabaseMDGetTypeTest.java,v
 1.1 2002/10/22 02:56:25 prickett Exp $
   * $Revision: 1.1 $
   * $Date: 2002/10/22 02:56:25 $
   *
   * ====================================================================
   * 
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999-2001 The Apache Software Foundation.  All rights 
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer. 
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution, if
   *    any, must include the following acknowlegement:  
   *       "This product includes software developed by the 
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Commons", and "Apache Software
   *    Foundation" must not be used to endorse or promote products derived
   *    from this software without prior written permission. For written 
   *    permission, please contact [EMAIL PROTECTED]
   *
   * 5. Products derived from this software may not be called "Apache"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   *
   */ 
  
  
  import junit.framework.TestCase;
  
  public class DatabaseMDGetTypeTest extends TestCase 
  {
  
      private static final String DB_NAME = "periodicity.vevent";
      private static final String DB_TYPE = "acme_database";
  
      public DatabaseMDGetTypeTest(String name)
      {
          super(name);
      }
  
      protected void runTest()
      {
          try
          {
              DatabaseMetaDataImpl dbmeta = 
                     new DatabaseMetaDataImpl(DB_NAME, DB_TYPE);
              assertEquals(
                     "Database name is incorrect. EXPECTED=\"" + 
                     DB_TYPE + "\" - ACTUAL=\"" + dbmeta.getType() + "\".",
                     DB_TYPE, dbmeta.getType());
          }
          catch(Exception e)
          {
              fail("UNEXPECTED EXCEPTION - \"" + e + "\"");
          }
      }
  
  }    
  
  
  
  1.1                  
jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DatabaseMDNameNullTest.java
  
  Index: DatabaseMDNameNullTest.java
  ===================================================================
  package org.apache.commons.periodicity.database;
  
  /*
   * $Header: 
/home/cvs/jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DatabaseMDNameNullTest.java,v
 1.1 2002/10/22 02:56:25 prickett Exp $
   * $Revision: 1.1 $
   * $Date: 2002/10/22 02:56:25 $
   *
   * ====================================================================
   * 
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999-2001 The Apache Software Foundation.  All rights 
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer. 
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution, if
   *    any, must include the following acknowlegement:  
   *       "This product includes software developed by the 
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Commons", and "Apache Software
   *    Foundation" must not be used to endorse or promote products derived
   *    from this software without prior written permission. For written 
   *    permission, please contact [EMAIL PROTECTED]
   *
   * 5. Products derived from this software may not be called "Apache"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   *
   */ 
  
  
  import junit.framework.TestCase;
  
  public class DatabaseMDNameNullTest extends TestCase 
  {
  
      public DatabaseMDNameNullTest(String name)
      {
          super(name);
      }
  
      protected void runTest()
      {
          try
          {
              DatabaseMetaDataImpl dbmeta = 
                     new DatabaseMetaDataImpl(null, "database.driver_name");
              fail("A Database Meta Data object cannot have a null name");
          }
          catch(Exception e)
          {
          }
      }
  
  }    
  
  
  
  
  
  1.1                  
jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DatabaseMDNameTypeNullTest.java
  
  Index: DatabaseMDNameTypeNullTest.java
  ===================================================================
  package org.apache.commons.periodicity.database;
  
  /*
   * $Header: 
/home/cvs/jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DatabaseMDNameTypeNullTest.java,v
 1.1 2002/10/22 02:56:25 prickett Exp $
   * $Revision: 1.1 $
   * $Date: 2002/10/22 02:56:25 $
   *
   * ====================================================================
   * 
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999-2001 The Apache Software Foundation.  All rights 
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer. 
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution, if
   *    any, must include the following acknowlegement:  
   *       "This product includes software developed by the 
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Commons", and "Apache Software
   *    Foundation" must not be used to endorse or promote products derived
   *    from this software without prior written permission. For written 
   *    permission, please contact [EMAIL PROTECTED]
   *
   * 5. Products derived from this software may not be called "Apache"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   *
   */ 
  
  
  import junit.framework.TestCase;
  
  public class DatabaseMDNameTypeNullTest extends TestCase 
  {
  
      public DatabaseMDNameTypeNullTest(String name)
      {
          super(name);
      }
  
      protected void runTest()
      {
          try
          {
              DatabaseMetaDataImpl dbmeta = new DatabaseMetaDataImpl(null, null);
              fail("The name and the type of a Database Meta Data Object " +
                     "must be non-null.");
          }
          catch(Exception e)
          {
          }
      }
  
  }    
  
  
  
  1.1                  
jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DatabaseMDTypeNullTest.java
  
  Index: DatabaseMDTypeNullTest.java
  ===================================================================
  package org.apache.commons.periodicity.database;
  
  /*
   * $Header: 
/home/cvs/jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DatabaseMDTypeNullTest.java,v
 1.1 2002/10/22 02:56:25 prickett Exp $
   * $Revision: 1.1 $
   * $Date: 2002/10/22 02:56:25 $
   *
   * ====================================================================
   * 
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999-2001 The Apache Software Foundation.  All rights 
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer. 
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution, if
   *    any, must include the following acknowlegement:  
   *       "This product includes software developed by the 
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Commons", and "Apache Software
   *    Foundation" must not be used to endorse or promote products derived
   *    from this software without prior written permission. For written 
   *    permission, please contact [EMAIL PROTECTED]
   *
   * 5. Products derived from this software may not be called "Apache"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   *
   */ 
  
  
  import junit.framework.TestCase;
  
  public class DatabaseMDTypeNullTest extends TestCase 
  {
  
      public DatabaseMDTypeNullTest(String name)
      {
          super(name);
      }
  
      protected void runTest()
      {
          try
          {
              DatabaseMetaDataImpl dbmeta = 
                     new DatabaseMetaDataImpl("icalendar.vevent", null);
              fail("A Database Meta Data object cannot have a null type");
          }
          catch(Exception e)
          {
          }
      }
  
  }    
  
  
  
  
  
  1.1                  
jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DriverMDContextNameNullTest.java
  
  Index: DriverMDContextNameNullTest.java
  ===================================================================
  package org.apache.commons.periodicity.database;
  
  /*
   * $Header: 
/home/cvs/jakarta-commons-sandbox/periodicity/src/plugins-build/database/src/test/org/apache/commons/periodicity/database/DriverMDContextNameNullTest.java,v
 1.1 2002/10/22 02:56:25 prickett Exp $
   * $Revision: 1.1 $
   * $Date: 2002/10/22 02:56:25 $
   *
   * ====================================================================
   * 
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 1999-2001 The Apache Software Foundation.  All rights 
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer. 
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in
   *    the documentation and/or other materials provided with the
   *    distribution.
   *
   * 3. The end-user documentation included with the redistribution, if
   *    any, must include the following acknowlegement:  
   *       "This product includes software developed by the 
   *        Apache Software Foundation (http://www.apache.org/)."
   *    Alternately, this acknowlegement may appear in the software itself,
   *    if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Commons", and "Apache Software
   *    Foundation" must not be used to endorse or promote products derived
   *    from this software without prior written permission. For written 
   *    permission, please contact [EMAIL PROTECTED]
   *
   * 5. Products derived from this software may not be called "Apache"
   *    nor may "Apache" appear in their names without prior written
   *    permission of the Apache Group.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * ====================================================================
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * <http://www.apache.org/>.
   *
   */ 
  
  
  import junit.framework.TestCase;
  
  public class DriverMDContextNameNullTest extends TestCase
  {
  
      public DriverMDContextNameNullTest(String name)
      {
          super(name);
      }    
  
      protected void runTest()
      {
          try
          {
              DriverMetaDataImpl driverMD = new DriverMetaDataImpl(
                     null, null);
              fail("EXPECTED EXCEPTION - " +
                     "Neither the name or the context can be null " +
                     "in the Driver Meta Data Implementation.");
          }
          catch(Exception e)
          {
          }
      }
  
  }    
              
          
  
  
  
  

--
To unsubscribe, e-mail:   <mailto:commons-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:commons-dev-help@;jakarta.apache.org>

Reply via email to