Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 13821 invoked from network); 3 Dec 2007 13:06:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Dec 2007 13:06:02 -0000 Received: (qmail 66338 invoked by uid 500); 3 Dec 2007 13:05:50 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 66322 invoked by uid 500); 3 Dec 2007 13:05:50 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 66313 invoked by uid 99); 3 Dec 2007 13:05:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Dec 2007 05:05:50 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Dec 2007 13:05:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 37BE91A9832; Mon, 3 Dec 2007 05:05:41 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r600515 - in /harmony/standard/site: docs/subcomponents/classlibrary/testing.html xdocs/subcomponents/classlibrary/testing.xml Date: Mon, 03 Dec 2007 13:05:40 -0000 To: commits@harmony.apache.org From: nadinem@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071203130541.37BE91A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: nadinem Date: Mon Dec 3 05:05:34 2007 New Revision: 600515 URL: http://svn.apache.org/viewvc?rev=600515&view=rev Log: HARMONY-5233 Modified: harmony/standard/site/docs/subcomponents/classlibrary/testing.html harmony/standard/site/xdocs/subcomponents/classlibrary/testing.xml Modified: harmony/standard/site/docs/subcomponents/classlibrary/testing.html URL: http://svn.apache.org/viewvc/harmony/standard/site/docs/subcomponents/classlibrary/testing.html?rev=600515&r1=600514&r2=600515&view=diff ============================================================================== --- harmony/standard/site/docs/subcomponents/classlibrary/testing.html (original) +++ harmony/standard/site/docs/subcomponents/classlibrary/testing.html Mon Dec 3 05:05:34 2007 @@ -233,21 +233,17 @@

Tests are not separated by functionality under test, for example, tests against clone() methods are NOT separated from tests against equals() methods. - Classpath tests are separated from bootclasspath tests on a directory level: + Find more details below.

-
<modulename>/src/test/api/java - Classpath tests
-<modulename>/src/test/api/java.injected - Bootclasspath tests

- Find more details - below. -

-

- Some modules might have platform specific tests that are in the case separated on a directory - level: + Some modules might have implementation specific tests that are in this case separated on a directory level:

-
<modulename>/src/test/api/common
-<modulename>/src/test/api/windows
-<modulename>/src/test/api/linux
+
<modulename>/src/test/impl/boot - Package private tests
+<modulename>/src/test/impl/linux - Linux specific tests
+<modulename>/src/test/impl/windows - Windows specific tests
+

+ If one pretends to test implementation independent platform-specific functionality, the test should be placed at <modulename>/src/test/api directory and check platforms from test internals. +

@@ -291,16 +287,10 @@

To separate the impl test results from the api ones, the impl test names end with - _ImplTest:
- - javax.crypto.CipherTest - - Implementation independent bootclasspath - test for javax.crypto.Cipher
- - javax.crypto.Cipher_ImplTest - - Implementation specific bootclasspath - test for javax.crypto.Cipher + _ImplTest:

+
org.apache.harmony.javax.crypto.tests.javax.crypto.CipherTest - Implementation independent test for javax.crypto.Cipher
+org.apache.harmony.javax.crypto.tests.javax.crypto.Cipher_ImplTest - Implementation specific test for javax.crypto.Cipher

Back to top

Modified: harmony/standard/site/xdocs/subcomponents/classlibrary/testing.xml URL: http://svn.apache.org/viewvc/harmony/standard/site/xdocs/subcomponents/classlibrary/testing.xml?rev=600515&r1=600514&r2=600515&view=diff ============================================================================== --- harmony/standard/site/xdocs/subcomponents/classlibrary/testing.xml (original) +++ harmony/standard/site/xdocs/subcomponents/classlibrary/testing.xml Mon Dec 3 05:05:34 2007 @@ -60,21 +60,17 @@

Tests are not separated by functionality under test, for example, tests against clone() methods are NOT separated from tests against equals() methods. - Classpath tests are separated from bootclasspath tests on a directory level: + Find more details below.

-
<modulename>/src/test/api/java - Classpath tests
-<modulename>/src/test/api/java.injected - Bootclasspath tests
-

- Find more details - below. -

- Some modules might have platform specific tests that are in the case separated on a directory - level: + Some modules might have implementation specific tests that are in this case separated on a directory level:

-
<modulename>/src/test/api/common
-<modulename>/src/test/api/windows
-<modulename>/src/test/api/linux
+
<modulename>/src/test/impl/boot - Package private tests
+<modulename>/src/test/impl/linux - Linux specific tests
+<modulename>/src/test/impl/windows - Windows specific tests
+

+ If one pretends to test implementation independent platform-specific functionality, the test should be placed at <modulename>/src/test/api directory and check platforms from test internals. +

@@ -114,16 +110,10 @@

To separate the impl test results from the api ones, the impl test names end with - _ImplTest:
- - javax.crypto.CipherTest - - Implementation independent bootclasspath - test for javax.crypto.Cipher
- - javax.crypto.Cipher_ImplTest - - Implementation specific bootclasspath - test for javax.crypto.Cipher + _ImplTest:

+
org.apache.harmony.javax.crypto.tests.javax.crypto.CipherTest - Implementation independent test for javax.crypto.Cipher
+org.apache.harmony.javax.crypto.tests.javax.crypto.Cipher_ImplTest - Implementation specific test for javax.crypto.Cipher