Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 32470 invoked from network); 1 Mar 2007 00:22:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Mar 2007 00:22:12 -0000 Received: (qmail 26868 invoked by uid 500); 1 Mar 2007 00:22:20 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 26846 invoked by uid 500); 1 Mar 2007 00:22:20 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 26834 invoked by uid 99); 1 Mar 2007 00:22:20 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Feb 2007 16:22:20 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Feb 2007 16:22:11 -0800 Received: from eos.apache.osuosl.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 8F712599DA for ; Thu, 1 Mar 2007 00:21:51 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: derby-commits@db.apache.org Date: Thu, 01 Mar 2007 00:21:51 -0000 Message-ID: <20070301002151.22651.95449@eos.apache.osuosl.org> Subject: [Db-derby Wiki] Update of "ConvertOldTestToJunitTips" by jeanTanderson X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Db-derby Wiki" for change notification. The following page has been changed by jeanTanderson: http://wiki.apache.org/db-derby/ConvertOldTestToJunitTips The comment on the change is: added an initial faq New page: The page assembles tips on converting old tests to JUnit. '''My new junit test compiles just fine -- why doesn't it execute?''' Many of the old tests take a connection argument, such as: {{{static void testLongBinary(Connection conn)}}} When you convert it to a JUnit test, remember to remove the connection argument: {{{static void testLongBinary ()}}}