package sqlancer.common.oracle; import sqlancer.GlobalState; import sqlancer.Reproducer; public interface TestOracle> { void check() throws Exception; default Reproducer getLastReproducer() { return null; } default String getLastQueryString() { throw new AssertionError("Not supported!"); } }