Package org.apache.cayenne.testdo.relationship

Examples of org.apache.cayenne.testdo.relationship.RelationshipHelper


    public void testValidateForSave2() throws Exception {
        MeaningfulFK testObject = createDataContext().newObject(
                MeaningfulFK.class);

        RelationshipHelper related = testObject
                .getObjectContext()
                .newObject(RelationshipHelper.class);
        testObject.setToRelationshipHelper(related);

        ValidationResult validation = new ValidationResult();
View Full Code Here


    }

    public void testValidateForSave2() throws Exception {
        MeaningfulFK testObject = context.newObject(MeaningfulFK.class);

        RelationshipHelper related = testObject.getObjectContext().newObject(
                RelationshipHelper.class);
        testObject.setToRelationshipHelper(related);

        ValidationResult validation = new ValidationResult();
        testObject.validateForSave(validation);
View Full Code Here

TOP

Related Classes of org.apache.cayenne.testdo.relationship.RelationshipHelper

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.