Author: ggregory
Date: Sun Sep 2 18:32:59 2012
New Revision: 1380023
URL: http://svn.apache.org/viewvc?rev=1380023&view=rev
Log:
Use camel-case for test method names.
Modified:
commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/digest/DigestUtilsTest.java
Modified:
commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/digest/DigestUtilsTest.java
URL:
http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/digest/DigestUtilsTest.java?rev=1380023&r1=1380022&r2=1380023&view=diff
==============================================================================
---
commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/digest/DigestUtilsTest.java
(original)
+++
commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/digest/DigestUtilsTest.java
Sun Sep 2 18:32:59 2012
@@ -133,7 +133,7 @@ public class DigestUtilsTest {
* An MD5 hash converted to hex should always be 32 characters.
*/
@Test
- public void testMD5HexLength() {
+ public void testMd5HexLength() {
String hashMe = "this is some string that is longer than 32
characters";
String hash = DigestUtils.md5Hex(getBytesUtf8(hashMe));
assertEquals(32, hash.length());
@@ -161,7 +161,7 @@ public class DigestUtilsTest {
* An MD5 hash should always be a 16 element byte[].
*/
@Test
- public void testMD5Length() {
+ public void testMd5Length() {
String hashMe = "this is some string that is longer than 16
characters";
byte[] hash = DigestUtils.md5(getBytesUtf8(hashMe));
assertEquals(16, hash.length);