Package com.bubble.serializer.benchmark

Source Code of com.bubble.serializer.benchmark.IntArraySerializeTest

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();
   
  }
}
TOP

Related Classes of com.bubble.serializer.benchmark.IntArraySerializeTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.