*/
public class StringsBenchmark {
public static void main(String[] args) {
Harness harness = new Harness();
harness.addMetric(new DeserializationSpeedMetric(10, true));
harness.addProduct(new StringNonCachingConverter());
harness.addProduct(new StringInternConverter());
harness.addProduct(new StringWithWeakHashMapConverter());
harness.addProduct(new StringWithSynchronizedWeakHashMapConverter());
harness.addTarget(new BigString());
harness.addTarget(new StringArray(1024, 1024, 128));