public static MocoConfig context(final String context) {
return new MocoContextConfig(checkNotNullOrEmpty(context, "Context should not be null"));
}
public static MocoConfig response(final ResponseHandler handler) {
return new MocoResponseConfig(checkNotNull(handler, "Response should not be null"));
}