Skip to content

Commit c2809b4

Browse files
committed
Prefix @test method names with "test".
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1155183 13f79535-47bb-0310-9956-ffa450edef68
1 parent eafc2b9 commit c2809b4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/test/org/apache/commons/codec/language/bm/RuleTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ private Rule.Phoneme[][] makePhonemes() {
5959
}
6060

6161
@Test
62-
public void phonemeComparedToLaterIsNegative() {
62+
public void testPhonemeComparedToLaterIsNegative() {
6363
for (Rule.Phoneme[] phs : makePhonemes()) {
6464
for (int i = 0; i < phs.length; i++) {
6565
for (int j = i + 1; j < phs.length; j++) {
@@ -73,7 +73,7 @@ public void phonemeComparedToLaterIsNegative() {
7373
}
7474

7575
@Test
76-
public void phonemeComparedToSelfIsZero() {
76+
public void testPhonemeComparedToSelfIsZero() {
7777
for (Rule.Phoneme[] phs : makePhonemes()) {
7878
for (Rule.Phoneme ph : phs) {
7979
assertEquals("Phoneme compared to itself should be zero: " + ph.getPhonemeText(), 0,
@@ -83,7 +83,7 @@ public void phonemeComparedToSelfIsZero() {
8383
}
8484

8585
@Test
86-
public void subSequenceWorks() {
86+
public void testSubSequenceWorks() {
8787
// AppendableCharSequence is private to Rule. We can only make it through a Phoneme.
8888

8989
Rule.Phoneme a = new Rule.Phoneme("a", null);

0 commit comments

Comments
 (0)