abc

Results 4 comments of abc

it will be nice if we can have flag to determine which behavior we want . the only thing that is inconsistent , if we run the test using gradle/maven/intellij...

Hi , I use assertj db version 2.0.2 My initial observation is the proxy method in assertjdb and assertj core now is returning different generic Thanks

Apologies for the delay This works with assertj 3.14.0 and assertj db 2.0.2 ``` import org.assertj.core.api.SoftAssertions; import org.assertj.db.api.RequestAssert; import org.assertj.db.type.Request; public class DBAssertions extends SoftAssertions { public RequestAssert assertThat(Request actual)...

It seems didnt work , in normal prepared statement i can do something like this ``` ps = conn.prepareStatement(query); if (queryTimeout > 0) { ps.setQueryTimeout(queryTimeout); LOGGER.info("set querytimeout {}", queryTimeout); }...