com.flextrade.jfixture.behaviours.tracing.TracingStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfixture Show documentation
Show all versions of jfixture Show documentation
JFixture is an open source library based on the popular .NET library, AutoFixture
The newest version!
package com.flextrade.jfixture.behaviours.tracing;
import java.io.IOException;
interface TracingStrategy {
public void writeRequest(Appendable appendable, Object request) throws IOException;
public void writeCreated(Appendable appendable, Object request, Object specimen) throws IOException;
void writeError(Appendable appendable, Exception exception) throws IOException;
}