Skip to content

Commit

Permalink
apply google code style
Browse files Browse the repository at this point in the history
  • Loading branch information
hajk1 committed Jun 25, 2024
1 parent 73b5b1e commit c1aeb6f
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions src/test/java/org/iban4j/TestDataHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@
import java.util.Collection;

final class TestDataHelper {
public static final String defaultExceptionMessage = "Expected doThing() to throw, but it didn't";
public static final String defaultExceptionMessage = "Expected doThing() to throw, but it didn't";

private TestDataHelper() {
}
private TestDataHelper() {}

public static Collection<Object[]> getIbanData() {
public static Collection<Object[]> getIbanData() {
return Arrays.asList(
new Object[][] {
{
Expand Down Expand Up @@ -925,18 +924,18 @@ public static Collection<Object[]> getIbanData() {
"BI4210000100010000332045181"
}
});
}
}

public static Collection<Object[]> getBicData() {
return Arrays.asList(new Object[][]{
{"DEUTDEFF"},
{"DEUTDEFF500"},
{"NEDSZAJJXXX"},
{"DABADKKK"},
{"UNCRIT2B912"},
{"DSBACNBXSHA"},
{"BNORPHMM"}
public static Collection<Object[]> getBicData() {
return Arrays.asList(
new Object[][] {
{"DEUTDEFF"},
{"DEUTDEFF500"},
{"NEDSZAJJXXX"},
{"DABADKKK"},
{"UNCRIT2B912"},
{"DSBACNBXSHA"},
{"BNORPHMM"}
});
}

}
}

0 comments on commit c1aeb6f

Please sign in to comment.