testUsEnglishStatic doesn't fail
--------------------------------
Key: CODEC-54
URL: http://issues.apache.org/jira/browse/CODEC-54
Project: Commons Codec
Issue Type: Bug
Reporter: Henri Yandell
The source code for SoundexTest has this:
// This test fails.
public void testUsEnglishStatic()
{
assertEquals( Soundex.US_ENGLISH.soundex( "Williams" ), "W452" );
}
However the test doesn't seem to fail.
It's followed by:
// This test succeeds.
public void testNewInstance()
{
assertEquals( new Soundex().soundex( "Williams" ), "W452" );
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]