autofixture.generators.objects.implementationdetails.Debug Maven / Gradle / Ivy
package autofixture.generators.objects.implementationdetails;
/**
* Created by grzes on 25.11.2016.
*/
public class Debug {
public static void print(Exception t) {
if(System.getenv("AUTOFIXTUREGENERATOR_DEBUG") != null) {
System.out.println(t);
}
}
}