Package eu.stratosphere.api.java.typeutils.runtime.GenericTypeSerializerTest

Examples of eu.stratosphere.api.java.typeutils.runtime.GenericTypeSerializerTest.Book


    ComplexNestedObject2 co1 = new ComplexNestedObject2(rnd);
    ComplexNestedObject2 co2 = new ComplexNestedObject2();
    ComplexNestedObject2 co3 = new ComplexNestedObject2(rnd);
    ComplexNestedObject2 co4 = new ComplexNestedObject2(rnd);
   
    Book b1 = new Book(976243875L, "The Serialization Odysse", 42);
    Book b2 = new Book(0L, "Debugging byte streams", 1337);
    Book b3 = new Book(-1L, "Low level interfaces", 0xC0FFEE);
    Book b4 = new Book(Long.MAX_VALUE, "The joy of bits and bytes", 0xDEADBEEF);
    Book b5 = new Book(Long.MIN_VALUE, "Winnign a prize for creative test strings", 0xBADF00);
    Book b6 = new Book(-2L, "Distributed Systems", 0xABCDEF0123456789L);
   
    ArrayList<String> list = new ArrayList<String>();
    list.add("A");
    list.add("B");
    list.add("C");
View Full Code Here


  }
 
  @Test
  public void testBeanStyleObjects() {
    {
      Book b1 = new Book(976243875L, "The Serialization Odysse", 42);
      Book b2 = new Book(0L, "Debugging byte streams", 1337);
      Book b3 = new Book(-1L, "Low level interfaces", 0xC0FFEE);
      Book b4 = new Book(Long.MAX_VALUE, "The joy of bits and bytes", 0xDEADBEEF);
      Book b5 = new Book(Long.MIN_VALUE, "Winnign a prize for creative test strings", 0xBADF00);
      Book b6 = new Book(-2L, "Distributed Systems", 0xABCDEF0123456789L);
     
      runTestsnew Book[] {b1, b2},
            new Book[] {},
            new Book[] {},
            new Book[] {},
View Full Code Here

TOP

Related Classes of eu.stratosphere.api.java.typeutils.runtime.GenericTypeSerializerTest.Book

Copyright © 2018 www.massapicom. 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.