Package org.apache.jdo.tck.api.persistencemanager

Source Code of org.apache.jdo.tck.api.persistencemanager.NewInstance

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


package org.apache.jdo.tck.api.persistencemanager;

import javax.jdo.PersistenceManager;
import javax.jdo.Transaction;
import org.apache.jdo.tck.pc.newInstance.AAddress;
import org.apache.jdo.tck.pc.newInstance.Address;
import org.apache.jdo.tck.pc.newInstance.IAddress;
import org.apache.jdo.tck.pc.newInstance.AAddress_bad;
import org.apache.jdo.tck.pc.newInstance.Address_bad;
import org.apache.jdo.tck.pc.newInstance.IAddress_bad;
import org.apache.jdo.tck.util.BatchTestRunner;

/**
*<B>Title:</B> Delete Persistent
*<BR>
*<B>Keywords:</B>
*<BR>
*<B>Assertion IDs:</B> A12.6.6-2
*<BR>
*<B>Assertion Description: </B>
* Persistent properties declared in the interface are defined as those that have both a get and a set method
* or both an is and a set method, named according to the JavaBeans naming conventions, and
* of a type supported as a persistent type.
* The implementing class will provide a suitable implementation for all property access methods and
* will throw JDOUserException for all other methods of the interface.
*/

public class NewInstance extends PersistenceManagerTest {
   
    /** */
    private static final String ASSERTION_FAILED =
        "Assertion A12.6.6-2 (NewInstance) failed: ";
   
    /**
     * The <code>main</code> is called when the class
     * is directly executed from the command line.
     * @param args The arguments passed to the program.
     */
    public static void main(String[] args) {
        BatchTestRunner.run(NewInstance.class);
    }
   
    /** test newInstance (Class pcInterface) */
    public void testNewInstanceInterface() {
        pm = getPM();  
        IAddress instance = pm.newInstance(IAddress.class);
    }

    /** test newInstance (Class pcAbstractClass) */
    public void testNewInstanceAbstractClass() {
        pm = getPM();  
        AAddress instance = pm.newInstance(AAddress.class);
    }

    /** test newInstance (Class pcClass) */
    public void testNewInstanceClass() {
        pm = getPM();  
        Address instance = pm.newInstance(Address.class);
    }

    /** test newInstance (Class pcInterface) */
    public void testNewInstanceInterfaceBad() {
        pm = getPM();  
        try {
            pm.newInstance(IAddress_bad.class);
            fail("Expected JDOUserException but no exception thrown.  "
                + "Interface contains a method that is not property.");
        } catch (javax.jdo.JDOUserException jdoe) {
            // Expected exception
        } catch (Exception e) {
            fail("Expected JDOUserException but " + e.getMessage()
                + " thrown instead.");
        }
    }

    /** test newInstance (Class pcAbstractClass) */
    public void testNewInstanceAbstractClassBad() {
        pm = getPM();  
        try {
            pm.newInstance(AAddress_bad.class);
            fail("Expected JDOUserException but no exception thrown.  "
                + "Abstract class contains a method that is not property.");
        } catch (javax.jdo.JDOUserException jdoe) {
            // Expected exception
        } catch (Exception e) {
            fail("Expected JDOUserException but " + e.getMessage()
                + "t hrown instead.");
        }
    }

    /** test newInstance (Class pcClass) */
    public void testNewInstanceClassBad() {
        pm = getPM();  
        try {
            pm.newInstance(Address_bad.class);
            fail("Expected JDOUserException but no exception thrown.  "
                + "Class contains non-public no-args constructor.");
        } catch (javax.jdo.JDOUserException jdoe) {
            // Expected exception
        } catch (Exception e) {
            fail("Expected JDOUserException but " + e.getMessage()
                + " thrown instead.");
        }
    }

}
TOP

Related Classes of org.apache.jdo.tck.api.persistencemanager.NewInstance

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.