Package com.cedarsoft.serialization.test.utils

Examples of com.cedarsoft.serialization.test.utils.ReflectionEquals


   * @param deserialized the deserialized object
   * @param original     the original
   */
  protected void verifyDeserialized( @Nonnull T deserialized, @Nonnull T original ) {
    assertEquals( original, deserialized );
    Assert.assertThat( deserialized, is( new ReflectionEquals( original ) ) );
  }
View Full Code Here


   * @param deserialized the deserialized object
   * @param original     the original
   */
  protected void verifyDeserialized( @Nonnull T deserialized, @Nonnull T original ) {
    assertEquals( original, deserialized );
    Assert.assertThat( deserialized, is( new ReflectionEquals( original ) ) );
  }
View Full Code Here

TOP

Related Classes of com.cedarsoft.serialization.test.utils.ReflectionEquals

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.