Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 48094 invoked from network); 27 Jan 2006 16:19:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 27 Jan 2006 16:19:56 -0000 Received: (qmail 79878 invoked by uid 500); 27 Jan 2006 16:19:48 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 79830 invoked by uid 500); 27 Jan 2006 16:19:47 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 79819 invoked by uid 99); 27 Jan 2006 16:19:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Jan 2006 08:19:47 -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; Fri, 27 Jan 2006 08:19:46 -0800 Received: (qmail 47695 invoked by uid 65534); 27 Jan 2006 16:19:25 -0000 Message-ID: <20060127161925.47669.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r372893 [2/2] - in /incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit: java/security/ java/security/cert/ java/security/spec/ javax/crypto/ javax/net/ssl/ javax/security/cert/ Date: Fri, 27 Jan 2006 16:18:33 -0000 To: harmony-commits@incubator.apache.org From: geirm@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/ExemptionMechanismExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/ExemptionMechanismExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/ExemptionMechanismExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/ExemptionMechanismExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -78,8 +78,6 @@ * Assertion: constructs ExemptionMechanismException with no detail message */ public void testExemptionMechanismException01() { - logln("==test_01: ExemptionMechanismException=="); - ExemptionMechanismException tE = new ExemptionMechanismException(); assertTrue(errNotExc, tE instanceof ExemptionMechanismException); assertNull("getMessage() must return null.", tE.getMessage()); @@ -97,8 +95,6 @@ * msg. Parameter msg is not null. */ public void testExemptionMechanismException02() { - logln("==test_02: ExemptionMechanismException=="); - ExemptionMechanismException tE; for (int i = 0; i < msgs.length; i++) { tE = new ExemptionMechanismException(msgs[i]); @@ -121,8 +117,6 @@ * is null */ public void testExemptionMechanismException03() { - logln("==test_03: ExemptionMechanismException=="); - String msg = null; ExemptionMechanismException tE = new ExemptionMechanismException(msg); assertTrue(errNotExc, tE instanceof ExemptionMechanismException); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/IllegalBlockSizeExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/IllegalBlockSizeExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/IllegalBlockSizeExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/IllegalBlockSizeExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -78,8 +78,6 @@ * Assertion: constructs IllegalBlockSizeException with no detail message */ public void testIllegalBlockSizeException01() { - logln("==test_01: IllegalBlockSizeException=="); - IllegalBlockSizeException tE = new IllegalBlockSizeException(); assertTrue(errNotExc, tE instanceof IllegalBlockSizeException); assertNull("getMessage() must return null.", tE.getMessage()); @@ -97,8 +95,6 @@ * Parameter msg is not null. */ public void testIllegalBlockSizeException02() { - logln("==test_02: IllegalBlockSizeException=="); - IllegalBlockSizeException tE; for (int i = 0; i < msgs.length; i++) { tE = new IllegalBlockSizeException(msgs[i]); @@ -121,8 +117,6 @@ * is null */ public void testIllegalBlockSizeException03() { - logln("==test_03: IllegalBlockSizeException=="); - String msg = null; IllegalBlockSizeException tE = new IllegalBlockSizeException(msg); assertTrue(errNotExc, tE instanceof IllegalBlockSizeException); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/NoSuchPaddingExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/NoSuchPaddingExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/NoSuchPaddingExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/NoSuchPaddingExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -78,8 +78,6 @@ * constructs NoSuchPaddingException with no detail message */ public void testNoSuchPaddingException01() { - logln("==test_01: NoSuchPaddingException=="); - NoSuchPaddingException tE = new NoSuchPaddingException(); assertTrue(errNotExc, tE instanceof NoSuchPaddingException); assertNull("getMessage() must return null.", tE.getMessage()); @@ -97,8 +95,6 @@ * Parameter msg is not null. */ public void testNoSuchPaddingException02() { - logln("==test_02: NoSuchPaddingException=="); - NoSuchPaddingException tE; for (int i = 0; i < msgs.length; i++) { tE = new NoSuchPaddingException(msgs[i]); @@ -121,8 +117,6 @@ * null */ public void testNoSuchPaddingException03() { - logln("==test_03: NoSuchPaddingException=="); - String msg = null; NoSuchPaddingException tE = new NoSuchPaddingException(msg); assertTrue(errNotExc, tE instanceof NoSuchPaddingException); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/ShortBufferExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/ShortBufferExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/ShortBufferExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/crypto/ShortBufferExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -77,8 +77,6 @@ * constructs ShortBufferException with no detail message */ public void testShortBufferException01() { - logln("==test_01: ShortBufferException=="); - ShortBufferException tE = new ShortBufferException(); assertTrue(errNotExc, tE instanceof ShortBufferException); assertNull("getMessage() must return null.", tE.getMessage()); @@ -96,8 +94,6 @@ * Parameter msg is not null. */ public void testShortBufferException02() { - logln("==test_02: ShortBufferException=="); - ShortBufferException tE; for (int i = 0; i < msgs.length; i++) { tE = new ShortBufferException(msgs[i]); @@ -120,8 +116,6 @@ * null */ public void testShortBufferException03() { - logln("==test_03: ShortBufferException=="); - String msg = null; ShortBufferException tE = new ShortBufferException(msg); assertTrue(errNotExc, tE instanceof ShortBufferException); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -78,8 +78,6 @@ * msg is not null. */ public void testSSLException01() { - logln("==test_01: SSLException=="); - SSLException tE; for (int i = 0; i < msgs.length; i++) { tE = new SSLException(msgs[i]); @@ -101,8 +99,6 @@ * constructs SSLException when msg is null */ public void testSSLException02() { - logln("==test_02: SSLException=="); - String msg = null; SSLException tE = new SSLException(msg); assertTrue(errNotExc, tE instanceof SSLException); @@ -120,8 +116,6 @@ * constructs DigestException when cause is null */ public void testSSLException03() { - logln("==test_03: SSLException=="); - Throwable cause = null; SSLException tE = new SSLException(cause); assertTrue(errNotExc, tE instanceof SSLException); @@ -139,8 +133,6 @@ * constructs SSLException when cause is not null */ public void testSSLException04() { - logln("==test_04: SSLException=="); - SSLException tE = new SSLException(tCause); assertTrue(errNotExc, tE instanceof SSLException); if (tE.getMessage() != null) { @@ -169,8 +161,6 @@ * msg is null */ public void testSSLException05() { - logln("==test_05: SSLException=="); - SSLException tE = new SSLException(null, null); assertTrue(errNotExc, tE instanceof SSLException); assertNull("getMessage() must return null", tE.getMessage()); @@ -188,8 +178,6 @@ * msg is not null */ public void testSSLException06() { - logln("==test_06: SSLException=="); - SSLException tE; for (int i = 0; i < msgs.length; i++) { tE = new SSLException(msgs[i], null); @@ -212,8 +200,6 @@ * msg is null */ public void testSSLException07() { - logln("==test_07: SSLException=="); - SSLException tE = new SSLException(null, tCause); assertTrue(errNotExc, tE instanceof SSLException); if (tE.getMessage() != null) { @@ -242,8 +228,6 @@ * msg is not null */ public void testSSLException08() { - logln("==test_08: SSLException=="); - SSLException tE; for (int i = 0; i < msgs.length; i++) { tE = new SSLException(msgs[i], tCause); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLHandshakeExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLHandshakeExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLHandshakeExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLHandshakeExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -79,8 +79,6 @@ * Parameter msg is not null. */ public void testSSLHandshakeException01() { - logln("==test_01: SSLHandshakeException=="); - SSLHandshakeException tE; for (int i = 0; i < msgs.length; i++) { tE = new SSLHandshakeException(msgs[i]); @@ -103,8 +101,6 @@ * null */ public void testSSLHandshakeException02() { - logln("==test_02: SSLHandshakeException=="); - String msg = null; SSLHandshakeException tE = new SSLHandshakeException(msg); assertTrue(errNotExc, tE instanceof SSLHandshakeException); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLKeyExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLKeyExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLKeyExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLKeyExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -78,8 +78,6 @@ * msg is not null. */ public void testSSLKeyException01() { - logln("==test_01: SSLKeyException=="); - SSLKeyException tE; for (int i = 0; i < msgs.length; i++) { tE = new SSLKeyException(msgs[i]); @@ -101,8 +99,6 @@ * constructs SSLKeyException when msg is null */ public void testSSLKeyException02() { - logln("==test_02: SSLKeyException=="); - String msg = null; SSLKeyException tE = new SSLKeyException(msg); assertTrue(errNotExc, tE instanceof SSLKeyException); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLPeerUnverifiedExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLPeerUnverifiedExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLPeerUnverifiedExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLPeerUnverifiedExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -79,8 +79,6 @@ * Parameter msg is not null. */ public void testSSLPeerUnverifiedException01() { - logln("==test_01: SSLPeerUnverifiedException=="); - SSLPeerUnverifiedException tE; for (int i = 0; i < msgs.length; i++) { tE = new SSLPeerUnverifiedException(msgs[i]); @@ -103,8 +101,6 @@ * is null */ public void testSSLPeerUnverifiedException02() { - logln("==test_02: SSLPeerUnverifiedException=="); - String msg = null; SSLPeerUnverifiedException tE = new SSLPeerUnverifiedException(msg); assertTrue(errNotExc, tE instanceof SSLPeerUnverifiedException); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLProtocolExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLProtocolExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLProtocolExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/net/ssl/SSLProtocolExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -78,8 +78,6 @@ * Parameter msg is not null. */ public void testSSLProtocolException01() { - logln("==test_01: SSLProtocolException=="); - SSLProtocolException tE; for (int i = 0; i < msgs.length; i++) { tE = new SSLProtocolException(msgs[i]); @@ -102,8 +100,6 @@ * null */ public void testSSLProtocolException02() { - logln("==test_02: SSLProtocolException=="); - String msg = null; SSLProtocolException tE = new SSLProtocolException(msg); assertTrue(errNotExc, tE instanceof SSLProtocolException); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateEncodingExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateEncodingExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateEncodingExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateEncodingExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -77,8 +77,6 @@ * Assertion: constructs CertificateEncodingException with no detail message */ public void testCertificateEncodingException01() { - logln("==test_01: CertificateEncodingException=="); - CertificateEncodingException tE = new CertificateEncodingException(); assertTrue(errNotExc, tE instanceof CertificateEncodingException); assertNull("getMessage() must return null.", tE.getMessage()); @@ -96,8 +94,6 @@ * msg. Parameter msg is not null. */ public void testCertificateEncodingException02() { - logln("==test_02: CertificateEncodingException=="); - CertificateEncodingException tE; for (int i = 0; i < msgs.length; i++) { tE = new CertificateEncodingException(msgs[i]); @@ -120,8 +116,6 @@ * is null */ public void testCertificateEncodingException03() { - logln("==test_03: CertificateEncodingException=="); - String msg = null; CertificateEncodingException tE = new CertificateEncodingException(msg); assertTrue(errNotExc, tE instanceof CertificateEncodingException); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -77,8 +77,6 @@ * constructs CertificateException with no detail message */ public void testCertificateException01() { - logln("==test_01: CertificateException=="); - CertificateException tE = new CertificateException(); assertTrue(errNotExc, tE instanceof CertificateException); assertNull("getMessage() must return null.", tE.getMessage()); @@ -96,8 +94,6 @@ * Parameter msg is not null. */ public void testCertificateException02() { - logln("==test_02: CertificateException=="); - CertificateException tE; for (int i = 0; i < msgs.length; i++) { tE = new CertificateException(msgs[i]); @@ -120,8 +116,6 @@ * null */ public void testCertificateException03() { - logln("==test_03: CertificateException=="); - String msg = null; CertificateException tE = new CertificateException(msg); assertTrue(errNotExc, tE instanceof CertificateException); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateExpiredExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateExpiredExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateExpiredExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateExpiredExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -77,8 +77,6 @@ * Assertion: constructs CertificateExpiredException with no detail message */ public void testCertificateExpiredException01() { - logln("==test_01: CertificateExpiredException=="); - CertificateExpiredException tE = new CertificateExpiredException(); assertTrue(errNotExc, tE instanceof CertificateExpiredException); assertNull("getMessage() must return null.", tE.getMessage()); @@ -96,8 +94,6 @@ * msg. Parameter msg is not null. */ public void testCertificateExpiredException02() { - logln("==test_02: CertificateExpiredException=="); - CertificateExpiredException tE; for (int i = 0; i < msgs.length; i++) { tE = new CertificateExpiredException(msgs[i]); @@ -120,8 +116,6 @@ * is null */ public void testCertificateExpiredException03() { - logln("==test_03: CertificateExpiredException=="); - String msg = null; CertificateExpiredException tE = new CertificateExpiredException(msg); assertTrue(errNotExc, tE instanceof CertificateExpiredException); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateNotYetValidExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateNotYetValidExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateNotYetValidExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateNotYetValidExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -79,8 +79,6 @@ * message */ public void testCertificateNotYetValidException01() { - logln("==test_01: CertificateNotYetValidException=="); - CertificateNotYetValidException tE = new CertificateNotYetValidException(); assertTrue(errNotExc, tE instanceof CertificateNotYetValidException); assertNull("getMessage() must return null.", tE.getMessage()); @@ -98,8 +96,6 @@ * detail message msg. Parameter msg is not null. */ public void testCertificateNotYetValidException02() { - logln("==test_02: CertificateNotYetValidException=="); - CertificateNotYetValidException tE; for (int i = 0; i < msgs.length; i++) { tE = new CertificateNotYetValidException(msgs[i]); @@ -122,8 +118,6 @@ * msg is null */ public void testCertificateNotYetValidException03() { - logln("==test_03: CertificateNotYetValidException=="); - String msg = null; CertificateNotYetValidException tE = new CertificateNotYetValidException( msg); Modified: incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateParsingExceptionTest.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateParsingExceptionTest.java?rev=372893&r1=372892&r2=372893&view=diff ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateParsingExceptionTest.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/security2/test/common/unit/javax/security/cert/CertificateParsingExceptionTest.java Fri Jan 27 08:17:59 2006 @@ -77,8 +77,6 @@ * Assertion: constructs CertificateParsingException with no detail message */ public void testCertificateParsingException01() { - logln("==test_01: CertificateParsingException=="); - CertificateParsingException tE = new CertificateParsingException(); assertTrue(errNotExc, tE instanceof CertificateParsingException); assertNull("getMessage() must return null.", tE.getMessage()); @@ -96,8 +94,6 @@ * msg. Parameter msg is not null. */ public void testCertificateParsingException02() { - logln("==test_02: CertificateParsingException=="); - CertificateParsingException tE; for (int i = 0; i < msgs.length; i++) { tE = new CertificateParsingException(msgs[i]); @@ -120,8 +116,6 @@ * is null */ public void testCertificateParsingException03() { - logln("==test_03: CertificateParsingException=="); - String msg = null; CertificateParsingException tE = new CertificateParsingException(msg); assertTrue(errNotExc, tE instanceof CertificateParsingException);