com.github.robindevilliers.cascade.modules.reporter.StringStateRendering Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cascade Show documentation
Show all versions of cascade Show documentation
Cascade is a blackbox testing framework
The newest version!
package com.github.robindevilliers.cascade.modules.reporter;
public class StringStateRendering implements StateRenderingStrategy {
@Override
public boolean accept(Object value) {
return value instanceof String;
}
@Override
public String render(Object value) {
return value.toString();
}
}