copytest.java

来自「另外一种持久性o/m软件」· Java 代码 · 共 78 行

JAVA
78
字号
package org.apache.torque.util;/* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed 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. */import org.apache.torque.BaseRuntimeTestCase;import org.apache.torque.test.Author;import org.apache.torque.test.AuthorPeer;import org.apache.torque.test.Book;/** * Test code for TorqueObject.copy(). * * @author <a href="mailto:torque@kivus.myip.org">Rafal Maczewski</a> * @version $Id: CopyTest.java,v 1.6 2005/04/16 13:59:30 tfischer Exp $ */public class CopyTest extends BaseRuntimeTestCase{    /**     * Creates a new instance.     */    public CopyTest(String name)    {        super(name);    }    public void setUp()    {        super.setUp();    }    /**     * does some inserts.     */    public void testCopyObject() throws Exception    {        Author author = new Author();        author.setName("Author to be copied");        author.save();        for (int j = 1; j <= 10; j++)        {            Book book = new Book();            book.setAuthor(author);            book.setTitle("Book " + j + " - " + author.getName());            book.setIsbn("unknown");            book.save();        }        assertTrue("Number of books before copy should be 10, was "                + author.getBooks().size(),                 author.getBooks().size() == 10);        Author authorCopy = author.copy();        authorCopy.save();        author = AuthorPeer.retrieveByPK(author.getPrimaryKey());        assertTrue("Number of books in original object should be 10, was "                + author.getBooks().size(),                 author.getBooks().size() == 10);        assertTrue("Number of books after copy should be 10, was "                + authorCopy.getBooks().size(),                 authorCopy.getBooks().size() == 10);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?