Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 6573 invoked from network); 17 Oct 2006 16:11:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 17 Oct 2006 16:11:57 -0000 Received: (qmail 14561 invoked by uid 500); 17 Oct 2006 16:11:57 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 14544 invoked by uid 500); 17 Oct 2006 16:11:57 -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 14533 invoked by uid 99); 17 Oct 2006 16:11:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Oct 2006 09:11:57 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Oct 2006 09:11:56 -0700 Received: from ajax.apache.org (localhost [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id BE74CD49BD for ; Tue, 17 Oct 2006 17:11:35 +0100 (BST) 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: Tue, 17 Oct 2006 16:11:35 -0000 Message-ID: <20061017161135.6968.60504@ajax.apache.org> Subject: [Db-derby Wiki] Update of "DerbyJunitTestConfiguration" by DanDebrunner X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 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 DanDebrunner: http://wiki.apache.org/db-derby/DerbyJunitTestConfiguration ------------------------------------------------------------------------------ In general tests should not rely on the user name or the database name, this will allow tests to run in multiple configurations without changes. == Derby Client Configuration == - Setup by decorator created by `TestConfiguration.derbyClientServerDecorator` static methods. + Setup by decorator created by `TestConfiguration.clientServerDecorator(Test)` or `TestConfiguration.clientServerSuite(Class)` static methods. Inherits configuration setup from current configuration but: * Uses client driver - * Starts network server in its setUp method, server output in `${user.dir}/logs/serverConsoleOutput.log`. + * Starts network server in its `setUp` method, server output in `${user.dir}/logs/serverConsoleOutput.log` in append mode. - Note network server is not shutdown by the decorator. It is left up for future sets of tests. + * Stops network server in its `tearDown` method.