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

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


        assertDeepEquals( deserialized, session.getAttributesInternal() );
    }

    @Test( enabled = true )
    public void testProxy() throws Exception {
        final SomeInterface bean = TestClasses.createProxy();
        final byte[] bytes = serialize( bean );
        assertDeepEquals( deserialize( bytes ), bean );
    }
View Full Code Here

TOP

Related Classes of de.javakaffee.web.msm.serializer.javolution.TestClasses.SomeInterface

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.