File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
src/test/java/org/apache/commons/lang3/builder Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 1919import static org .junit .jupiter .api .Assertions .assertEquals ;
2020import static org .junit .jupiter .api .Assertions .assertNotNull ;
2121
22+ import java .math .BigDecimal ;
23+ import java .math .BigInteger ;
24+
2225import org .apache .commons .lang3 .AbstractLangTest ;
2326import org .junit .jupiter .api .Test ;
2427
@@ -52,6 +55,8 @@ private static class TypeTestClass implements Diffable<TypeTestClass> {
5255 private final Object objectField = null ;
5356 private final Object [] objectArrayField = { null };
5457 private transient String transientField ;
58+ private final BigDecimal bigDecimal = BigDecimal .valueOf (2.0 );
59+ private final BigInteger bigInteger = BigInteger .valueOf (2 );
5560 @ DiffExclude
5661 private String annotatedField = "a" ;
5762 private String excludedField = "a" ;
You can’t perform that action at this time.
0 commit comments