com.accenture.testing.bdd.parameters.DefaultParamTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bdd-for-all Show documentation
Show all versions of bdd-for-all Show documentation
A simple to use, easy to integrate, BDD library for API and microservices development.
The newest version!
package com.accenture.testing.bdd.parameters;
public class DefaultParamTransformer extends ParamTransformer {
/** initializer, ensures there's a cache. */
public DefaultParamTransformer() {
addTransform(new CacheTransform());
addTransform(new ResponseCacheTransform("response"));
addTransform(new ResponseCacheTransform("response.body"));
addTransform(new ResponseCacheTransform("response.headers"));
addTransform(new FakerTransform());
addTransform(new VariableTransform());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy