11/*
22 * Copyright 2001-2004 The Apache Software Foundation.
3- *
3+ *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
66 * You may obtain a copy of the License at
7- *
7+ *
88 * http://www.apache.org/licenses/LICENSE-2.0
9- *
9+ *
1010 * Unless required by applicable law or agreed to in writing, software
1111 * distributed under the License is distributed on an "AS IS" BASIS,
1212 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
15- */
15+ */
1616
1717// (FYI: Formatted and sorted with Eclipse)
1818package org .apache .commons .codec .language ;
2626
2727/**
2828 * Tests {@link Soundex}
29- *
30- * @version $Id: SoundexTest.java,v 1.20 2004/10/08 22:56:22 ggregory Exp $
29+ *
30+ * @version $Id$
3131 * @author Apache Software Foundation
3232 */
3333public class SoundexTest extends StringEncoderAbstractTest {
@@ -47,7 +47,7 @@ void encodeAll(String[] strings, String expectedEncoding) {
4747 assertEquals (expectedEncoding , this .getEncoder ().encode (strings [i ]));
4848 }
4949 }
50-
50+
5151 /**
5252 * @return Returns the _encoder.
5353 */
@@ -139,7 +139,7 @@ public void testDifference() throws EncoderException {
139139 // Examples from http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_setu-sus_3o6w.asp
140140 assertEquals (4 , this .getEncoder ().difference ("Smith" , "Smythe" ));
141141 assertEquals (4 , this .getEncoder ().difference ("Smithers" , "Smythers" ));
142- assertEquals (2 , this .getEncoder ().difference ("Anothers" , "Brothers" ));
142+ assertEquals (2 , this .getEncoder ().difference ("Anothers" , "Brothers" ));
143143 }
144144
145145 public void testEncodeBasic () {
@@ -257,7 +257,7 @@ public void testHWRuleEx1() {
257257 /**
258258 * Consonants from the same code group separated by W or H are treated as
259259 * one.
260- *
260+ *
261261 * Test data from http://www.myatt.demon.co.uk/sxalg.htm
262262 */
263263 public void testHWRuleEx2 () {
@@ -340,8 +340,8 @@ public void testMsSqlServer3() {
340340
341341 /**
342342 * Fancy characters are not mapped by the default US mapping.
343- *
344- * http://nagoya .apache.org/bugzilla/show_bug.cgi?id=29080
343+ *
344+ * http://issues .apache.org/bugzilla/show_bug.cgi?id=29080
345345 */
346346 public void testUsMappingOWithDiaeresis () {
347347 assertEquals ("O000" , this .getEncoder ().encode ("o" ));
@@ -355,8 +355,8 @@ public void testUsMappingOWithDiaeresis() {
355355
356356 /**
357357 * Fancy characters are not mapped by the default US mapping.
358- *
359- * http://nagoya .apache.org/bugzilla/show_bug.cgi?id=29080
358+ *
359+ * http://issues .apache.org/bugzilla/show_bug.cgi?id=29080
360360 */
361361 public void testUsMappingEWithAcute () {
362362 assertEquals ("E000" , this .getEncoder ().encode ("e" ));
0 commit comments