Package de.danielbechler.diff.mock

Examples of de.danielbechler.diff.mock.ObjectWithAccessTrackingIgnoredProperty


  }

  @Test(groups = TestGroups.INTEGRATION)
  public void testThatIgnoredPropertiesAreNeverAccessed()
  {
    final ObjectWithAccessTrackingIgnoredProperty working = new ObjectWithAccessTrackingIgnoredProperty();
    final ObjectWithAccessTrackingIgnoredProperty base = new ObjectWithAccessTrackingIgnoredProperty();

    ObjectDifferBuilder.buildDefault().compare(working, base);

    Assertions.assertThat(working.accessed).isFalse();
    Assertions.assertThat(base.accessed).isFalse();
View Full Code Here

TOP

Related Classes of de.danielbechler.diff.mock.ObjectWithAccessTrackingIgnoredProperty

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.