Skip to content

Commit

Permalink
#114 test jacoco fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 13, 2022
1 parent 04c9ceb commit 6ad0355
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions src/test/java/com/jcabi/log/ObjectDecorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,20 @@ private static Collection<Object[]> params() {
{null, "NULL", 0, 0, 0},
{new SecretDecor("x"), "{secret: \"x\"", 0, 0, 0},
{new ObjectDecorTest.Foo(1, "one"), "{num: \"1\", name: \"one\"", 0, 0, 0},
// @checkstyle MethodBodyComments (6 lines)
// @checkstyle LineLength (3 lines)
{
new Object[]{new ObjectDecorTest.Foo(0, "zero"), new ObjectDecorTest.Foo(2, "two")},
"[{num: \"0\", name: \"zero\"}, {num: \"2\", name: \"two\"",
new Object[]{
new ObjectDecorTest.Foo(0, "zero"),
new ObjectDecorTest.Foo(2, "two"),
},
"[{num: \"0\", name: \"zero\"",
0, 0, 0,
},
{
new Object[]{
new ObjectDecorTest.Foo(0, "abc"),
new ObjectDecorTest.Foo(2, "cde"),
},
", {num: \"2\", name: \"cde\"",
0, 0, 0,
},
{
Expand Down

0 comments on commit 6ad0355

Please sign in to comment.