Package de.javakaffee.web.msm.serializer.javolution.TestClasses

Examples of de.javakaffee.web.msm.serializer.javolution.TestClasses.HashMapWithIntConstructorOnly


    @Test( enabled = true )
    public void testMapWithIntConstructorOnly() throws Exception {
        final MemcachedBackupSession session = _manager.createEmptySession();
        session.setValid( true );

        final HashMapWithIntConstructorOnly map = new HashMapWithIntConstructorOnly( 5 );
        session.setAttribute( "map", map );

        System.out.println( new String( _transcoder.serializeAttributes( session, session.getAttributesInternal() ) ));

        final Map<String, Object> deserialized =
View Full Code Here

TOP

Related Classes of de.javakaffee.web.msm.serializer.javolution.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.