Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 40809 invoked from network); 16 Jul 2009 05:22:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 16 Jul 2009 05:22:05 -0000 Received: (qmail 74266 invoked by uid 500); 16 Jul 2009 05:23:10 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 74149 invoked by uid 500); 16 Jul 2009 05:23:10 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 74140 invoked by uid 99); 16 Jul 2009 05:23:10 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 05:23:10 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jul 2009 05:23:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D6B912388872; Thu, 16 Jul 2009 05:22:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r794532 - /commons/proper/codec/trunk/src/test/org/apache/commons/codec/language/MetaphoneTest.java Date: Thu, 16 Jul 2009 05:22:45 -0000 To: commits@commons.apache.org From: bayard@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090716052245.D6B912388872@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bayard Date: Thu Jul 16 05:22:45 2009 New Revision: 794532 URL: http://svn.apache.org/viewvc?rev=794532&view=rev Log: Adding a pair of notes Modified: commons/proper/codec/trunk/src/test/org/apache/commons/codec/language/MetaphoneTest.java Modified: commons/proper/codec/trunk/src/test/org/apache/commons/codec/language/MetaphoneTest.java URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/test/org/apache/commons/codec/language/MetaphoneTest.java?rev=794532&r1=794531&r2=794532&view=diff ============================================================================== --- commons/proper/codec/trunk/src/test/org/apache/commons/codec/language/MetaphoneTest.java (original) +++ commons/proper/codec/trunk/src/test/org/apache/commons/codec/language/MetaphoneTest.java Thu Jul 16 05:22:45 2009 @@ -434,7 +434,10 @@ } public void testDiscardOfSilentGN() { + // NOTE: This does not test for silent GN, but for starting with GN assertEquals( "N", this.getMetaphone().metaphone("GNU") ); + + // NOTE: Trying to test for GNED, but expected code does not appear to execute assertEquals( "SNT", this.getMetaphone().metaphone("SIGNED") ); }