Searched refs:protectedField (Results 1 – 2 of 2) sorted by relevance
35 protected Object protectedField = new Object(); field in LenientCopyToolTest.SomeObject95 from.protectedField = 3; in shouldShallowCopyFieldValuesIntoMock()101 assertThat(to.protectedField).isNotEqualTo(from.protectedField); in shouldShallowCopyFieldValuesIntoMock()111 assertEquals(from.protectedField, to.protectedField); in shouldShallowCopyFieldValuesIntoMock()169 from.protectedField = "protectedField"; in shouldBeAbleToCopyFromRealObjectToRealObject()181 assertEquals(from.protectedField, to.protectedField); in shouldBeAbleToCopyFromRealObjectToRealObject()
195 @Tested protected int protectedField; field in ElementTest.A