private Element element3;
@Before
public void setup() throws NoSuchFieldException, FormException {
MyBean myBean = new MyBean();
tested = new DefaultResourceProvider();
tested.setResourceBundle(ResourceBundle.getBundle("Issue56Test"));
element1 = new PropertyFieldElement(MyBean.class.getDeclaredField("property1"));
element2 = new PropertyFieldElement(MyBean.class.getDeclaredField("property2"));
element3 = new PropertyFieldElement(MyBean.class.getDeclaredField("property3"));
element1.sourceProperty().set(myBean);