Added more tests

This commit is contained in:
Erik C. Thauvin 2023-08-12 11:06:23 -07:00
parent a57c5afd62
commit 079671626a
7 changed files with 58 additions and 5 deletions

View file

@ -44,7 +44,9 @@ class TestFormat {
t.setAttribute(TestCase.FOO, "374380141731053");
assertThat(t.getContent()).as("UK AMEX").isEqualTo("1053");
t.setAttribute(TestCase.FOO, "000000000000001");
assertThat(t.getContent()).isEmpty();
assertThat(t.getContent()).as("000000000000001").isEmpty();
t.setAttribute(TestCase.FOO, "");
assertThat(t.getContent()).as("").isEmpty();
}
@Test