Package de.javakaffee.kryoserializers.TestClasses

Examples of de.javakaffee.kryoserializers.TestClasses.HashMapWithIntConstructorOnly


        assertDeepEquals( deserialized, stringBuilder );
    }
   
    @Test( enabled = true )
    public void testMapWithIntConstructorOnly() throws Exception {
        final HashMapWithIntConstructorOnly map = new HashMapWithIntConstructorOnly( 5 );
        final HashMapWithIntConstructorOnly deserialized =
                deserialize( serialize( map ), HashMapWithIntConstructorOnly.class );
        assertDeepEquals( deserialized, map );

    }
View Full Code Here

TOP

Related Classes of de.javakaffee.kryoserializers.TestClasses.HashMapWithIntConstructorOnly

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.