avdotius

Results 4 comments of avdotius

Faced the same issue and made the following workaround. Created the annotation: ``` @Documented @Retention(RUNTIME) @Target(value = { FIELD }) public @interface ExplicitSqlType { JDBCType value(); } ``` Made a...

@romani sorry, here are the full class: ``` package com.datamatica.deliveryfee.rate.domain.calculator; import org.assertj.core.api.recursive.comparison.RecursiveComparisonConfiguration; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import com.datamatica.deliveryfee.rate.controller.dto.rate.RateRqtSplit; import com.datamatica.deliveryfee.rate.domain.Tariff; import com.datamatica.deliveryfee.rate.domain.enumeration.ComputationType; import java.math.BigDecimal; import java.math.RoundingMode; import java.util.List; import java.util.function.Consumer;...

@romani I already tried before to simplify and implement in pure java but there was no violation. So now I replicated all the AssertJ functions as they are. Now it...