package nl.tudelft.simulation.dsol.interpreter; import java.lang.reflect.Method; import nl.tudelft.simulation.dsol.interpreter.operations.custom.InterpreterOracleInterface; /** *

* copyright (c) 2002-2021 Delft University of Technology.
* BSD-style license. See DSOL License.
* @author Peter Jacobs * @author Alexander Verbraeck */ public class InterpreterTestOracle implements InterpreterOracleInterface { /** {@inheritDoc} */ @Override public boolean shouldBeInterpreted(final Method method) { // interpret all method calls... return true; } }