When I invoke the functions method from a Test class, I want the executeSol method not to run because it causes me errors.
public String funciones(String arguments){
//Many operations . . .
animalInterface.executeSol(integer id, String msg); <-- void
return soluciones;
}