Skip to content

Commit 13c1525

Browse files
committed
Better test method names.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1637837 13f79535-47bb-0310-9956-ffa450edef68
1 parent 199019d commit 13c1525

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/apache/commons/codec/binary/HexTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ public void testEncodeZeroes() {
306306
}
307307

308308
@Test
309-
public void testHelloWorldLowerCaseHex() {
309+
public void testEncodeHexBytesHelloWorldLowerCaseHex() {
310310
final byte[] b = StringUtils.getBytesUtf8("Hello World");
311311
final String expected = "48656c6c6f20576f726c64";
312312
char[] actual;
@@ -319,7 +319,7 @@ public void testHelloWorldLowerCaseHex() {
319319
}
320320

321321
@Test
322-
public void testHelloWorldUpperCaseHex() {
322+
public void testEncodeHexBytesHelloWorldUpperCaseHex() {
323323
final byte[] b = StringUtils.getBytesUtf8("Hello World");
324324
final String expected = "48656C6C6F20576F726C64";
325325
char[] actual;

0 commit comments

Comments
 (0)