Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 20599 invoked from network); 1 Mar 2007 10:20:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Mar 2007 10:20:43 -0000 Received: (qmail 3750 invoked by uid 500); 1 Mar 2007 10:20:51 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 3726 invoked by uid 500); 1 Mar 2007 10:20:51 -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 3715 invoked by uid 99); 1 Mar 2007 10:20:51 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Mar 2007 02:20:51 -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; Thu, 01 Mar 2007 02:20:42 -0800 Received: from eos.apache.osuosl.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 38348599DA for ; Thu, 1 Mar 2007 10:20:22 +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 10:20:22 -0000 Message-ID: <20070301102022.3001.49213@eos.apache.osuosl.org> Subject: [Db-derby Wiki] Trivial Update of "DerbyJunitTestConfiguration" by JohnHEmbretsen 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 JohnHEmbretsen: http://wiki.apache.org/db-derby/DerbyJunitTestConfiguration The comment on the change is: now using java parser (color coding) for code examples ------------------------------------------------------------------------------ === All test fixtures running as embedded and client === Note this default suite setup includes a !CleanDatabaseTestSetup. - {{{ + {{{#!java public static Test suite() { return TestConfiguration.defaultSuite(MyTest.class); } }}} === All fixtures running as embedded and client but some based upon JDBC level === Note manually added !CleanDatabaseTestSetup. - {{{ + {{{#!java public static Test suite() { TestSuite suite = new TestSuite(); @@ -61, +61 @@ === All test fixtures running only as embedded === Note this setup does '''not''' include a !CleanDatabaseTestSetup. - {{{ + {{{#!java public static Test suite() { return TestConfiguration.embeddedSuite(MyTest.class); } @@ -69, +69 @@ === All test fixtures running only as client === Note this setup does '''not''' include a !CleanDatabaseTestSetup. - {{{ + {{{#!java public static Test suite() { return TestConfiguration.clientServerSuite(MyTest.class); }