Return-Path: Delivered-To: apmail-db-ddlutils-dev-archive@www.apache.org Received: (qmail 10606 invoked from network); 5 Feb 2006 23:06:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Feb 2006 23:06:11 -0000 Received: (qmail 79331 invoked by uid 500); 5 Feb 2006 23:06:10 -0000 Delivered-To: apmail-db-ddlutils-dev-archive@db.apache.org Received: (qmail 79305 invoked by uid 500); 5 Feb 2006 23:06:10 -0000 Mailing-List: contact ddlutils-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ddlutils-dev@db.apache.org Delivered-To: mailing list ddlutils-dev@db.apache.org Received: (qmail 79294 invoked by uid 500); 5 Feb 2006 23:06:10 -0000 Delivered-To: apmail-db-ddlutils-commits@db.apache.org Received: (qmail 79291 invoked by uid 99); 5 Feb 2006 23:06:10 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Feb 2006 15:06:10 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 05 Feb 2006 15:06:09 -0800 Received: (qmail 10502 invoked by uid 65534); 5 Feb 2006 23:05:49 -0000 Message-ID: <20060205230549.10501.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r375125 - /db/ddlutils/trunk/src/test/org/apache/ddlutils/io/RoundtripTestBase.java Date: Sun, 05 Feb 2006 23:05:49 -0000 To: ddlutils-commits@db.apache.org From: tomdz@apache.org X-Mailer: svnmailer-1.0.6 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: tomdz Date: Sun Feb 5 15:05:48 2006 New Revision: 375125 URL: http://svn.apache.org/viewcvs?rev=375125&view=rev Log: Added comparison of the jdbc type name which gives more meaningful assertion failures Modified: db/ddlutils/trunk/src/test/org/apache/ddlutils/io/RoundtripTestBase.java Modified: db/ddlutils/trunk/src/test/org/apache/ddlutils/io/RoundtripTestBase.java URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/src/test/org/apache/ddlutils/io/RoundtripTestBase.java?rev=375125&r1=375124&r2=375125&view=diff ============================================================================== --- db/ddlutils/trunk/src/test/org/apache/ddlutils/io/RoundtripTestBase.java (original) +++ db/ddlutils/trunk/src/test/org/apache/ddlutils/io/RoundtripTestBase.java Sun Feb 5 15:05:48 2006 @@ -431,6 +431,9 @@ expected.isAutoIncrement(), actual.isAutoIncrement()); } + assertEquals("Type not the same for column "+actual.getName()+".", + expected.getType(), + actual.getType()); assertEquals("Type code not the same for column "+actual.getName()+".", expected.getTypeCode(), actual.getTypeCode());