package com.bubble.serializer.benchmark;
import com.bubble.serializer.objects.IntArrayPojo;
public class IntArraySerializeTest extends AbstractSerializeTest {
public IntArraySerializeTest(int loops, int runs) {
super(loops, runs);
}
protected Object createTestObject() {
return new IntArrayPojo(10000);
}
public static void main(String[] args) throws Exception {
IntArraySerializeTest test = new IntArraySerializeTest(10, 100);
test.runTest();
}
}